What is the correct way to pass and retrieve multiple parameters using AJAX in PHP?

When passing multiple parameters using AJAX in PHP, you can use the `data` option in the AJAX request to send an object containing all the parameters. On the PHP side, you can access these parameters using the `$_POST` superglobal array. To retrieve multiple parameters, you need to specify the keys of the parameters you want to retrieve from the `$_POST` array.

// AJAX request
$.ajax({
    url: 'your_php_file.php',
    method: 'POST',
    data: {
        param1: 'value1',
        param2: 'value2'
    },
    success: function(response) {
        console.log(response);
    }
});

// PHP code in your_php_file.php
$param1 = $_POST['param1'];
$param2 = $_POST['param2'];

// Use $param1 and $param2 as needed