I have an aplication in PHP Version 4.2.2 working... :rolleyes:
And in PHP Version 4.3.1 not working... :mad:
(both have register_globals ON)
Here is the code of the enviroment variables i want:
<?
session_start();
session_register("login0");
session_register("nok");
?>
In the 4.2.2 if i do echo $login0; it would be recognized as the POST on the form field <INPUT type=TEXT maxLength=40 size=15 name=login0> ...
In the 4.3.1 i have to do echo $_REQUEST["login0"]; or call the function import_request_variables...
Why? What can i do in php.ini or apache cfg so i can do a clean migration?
Thanks in advance,
./jp