Hi guys,
I have two identical machines:
Test Server:
Win2k, IIS, PhP Module, MySQL....
Production:
Win2k, IIS, PhP Module, MySQL
Code on the test env works fine:
here we go:
file 1:
$loginName = $HTTP_POST_VARS["login"];
$userPasswd = $HTTP_POST_VARS["password"];
session_register("loginName");
session_register("userPasswd");
....
....
passing to new a php file:
file 2:
session_register("loginName");
session_register("userPasswd");
On my test enviornment, I can see loginName and userPasswd,
while on the production, I get the following error, when I try to access loginName:
Notice: Undefined variable: loginName in c:\inetpub\wwwroot\Demo\yardInventory.php on line 18
Any ideas?
Thanks a lot!