I just upgraded to the latest version of PHP.
Since the upgrade, PHP is acting funny. I cannot pass any variable(s) via the browser.
For example, this code here...
<?php
if(!isSet($var))
{
echo("Var is not set.");
}
else
{
echo("Var is set to ".$var);
}
?>
... will always output "Var is not set" even when $var is set.
Any ideas?
Thanks in advance.