What are the best practices for accessing form variables in PHP scripts to avoid register_globals-related issues?

When accessing form variables in PHP scripts, it is best to avoid using the `register_globals` setting, as it can lead to security vulnerabilities. Instead, you should use `$_POST`, `$_GET`, or `$_REQUEST` superglobals to access form data securely. This helps prevent potential injection attacks and ensures that your script is not vulnerable to malicious input.

// Example of accessing form variables securely using $_POST superglobal
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $username = isset($_POST['username']) ? $_POST['username'] : '';
    $password = isset($_POST['password']) ? $_POST['password'] : '';
    
    // Now you can safely use $username and $password variables in your script
}