What are some common parameters passed to PHP scripts through URLs and how are they used?

Common parameters passed to PHP scripts through URLs include query strings, form data, and route parameters. These parameters are used to pass information to the PHP script, such as user input, settings, or identifiers. In PHP, these parameters can be accessed using the `$_GET`, `$_POST`, and `$_REQUEST` superglobal arrays.

// Example of accessing parameters passed through URL query string
if(isset($_GET['name'])) {
    $name = $_GET['name'];
    echo "Hello, $name!";
}