I am debugging a PHP file that I've never seen operational before (not my code), but supposedly worked.
Sample code snippet of myfile.php:
<html>
<body>
<p>
<?
echo $Year;
?>
</p>
</body>
</html>
From the way things are wired, it looks like the code is setup to pull Year from the query string (HTTP GET): http://server.com/myfile.php?Year=2010
This supposedly worked before, but doesn't anymore.
Is there a PHP setting to control this? Was this a 'feature' that got disabled in PHP version? I have never seen GET variables used outside of $_GET