Re: [PHP] Using PHP on Windows for the first time

2002-05-14 Thread Steve Buehler
Either put the following line at the top of your php script: error_reporting(E_ALL & ~(E_NOTICE | E_USER_NOTICE | E_WARNING | E_COMPILE_WARNING | E_CORE_WARNING | E_USER_WARNING) ); Or change the error reporting in your php.ini file. Steve At 08:48 AM 5/14/2002, Bob Strasser wrote: >Anyone kno

Re: [PHP] Using PHP on Windows for the first time

2002-05-14 Thread Justin French
unregistered variable message means that you're doing something like: if($address == "foo") { // something } if $address isn't set, then it's an unregistered var. this *might* solve it: if(isset($address)) { if($address == "foo") { // do something } } the

RE: [PHP] Using PHP on Windows for the first time

2002-05-14 Thread John Holmes
Your error_reporting is probably set to different levels. www.php.net/error_reporting ---John Holmes... > -Original Message- > From: Bob Strasser [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 14, 2002 9:48 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Using PHP on

[PHP] Using PHP on Windows for the first time

2002-05-14 Thread Bob Strasser
Anyone know a simple explanation of how to use forms using the post method on PHP for Windows. I use PHP on Linux and I don't have any problems. I do the same thing on Windows and I get an unregistered variable message on Windows. I assume I've missed something. Global variables is on. Why