Hi all:
I had bunch of simple scripts up and running, which worked just fine.
However it seems my ISP has upgraded to PHP 4.3.1, without telling his clients!
So, none of my codes work now... 🙁 🙁
Most my code is in this format:
<?
if($Mode=="2")
{
echo "2";
}
else
{
?>
<a href="?Mode=2">Blah Blah</a>
<?
}
?>
For the code above I get the error:
Notice: Undefined variable: Test in demo.php line2.
Can you tell me what's the best and quickest way of fixing this?
Thanx
Kamy