How can a beginner in PHP handle scripts that require Register Globals to be turned on?

When dealing with scripts that require Register Globals to be turned on, a beginner in PHP can use the $_REQUEST superglobal array to access both GET and POST variables. This allows the script to retrieve input data without relying on the Register Globals setting.

$variable = $_REQUEST['variable_name'];