Hello all. I just finished placing a new server in production and PHP is not working. I am getting undefined variable messages when trying to submit php based forms. Register Globals is on in php.ini, but it still does not work. I have even tried copying a known-good php.ini from another server and the same behavior exists. I am running IIS in Windows 2000. Any ideas?
Jeff
Chances are you just have error reporting set to show warnings/notices as well as errors. Check the php.ini for this. While it is best to code so that you won't have these notices popping up, most will tell you to turn down error reporting on a production server.
What would cause something like this is if I have a checkbox in a form on one page, and I don't have it checked when I submit the form, that variable won't be sent...so if I try to do something with that variable, I'll get this warning.
-- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED]
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php