If you installed php like mentioned in the install readme there should be a php.ini in /etc/php.ini (Unix) or C:\windows or C:\winnt (windows, system root).
In that php.ini there is one line like register_globals = Off. If you replace it with register_globals = On it should work. Don't forget to restart apache after modifying php.ini.
If you can't find php.ini then simply create a script like e.g. info.php and put the following code in it:
<?PHP
phpinfo();
?>
That would output the info page. Near the top of the info page is a line showing where php searches for the php.ini. If there is no php.ini you might want to place one of the example php.ini files of the php package there and to edit it.