Today we upgraded php from 4.4.7 to 5.2.5
I expect lots of scripts not working or in need of an update.
First thing i notice it's i have some scripts that i could link like:
http://mysite.com/script.php?action=show
and it would show lets say the users in a database, inside the script it would be like:
<?php
if ($action == "show") {
mysql_connect("localhost", " etc etc etc
die;
}
echo "hello world";
?>
But now the script just go directly to hello world when called like:
http://mysite.com/script.php?action=show
please help so i could update them.
thanks.