Re: [PHP] error problem

2003-08-14 Thread Kris Reid
Sorry the second "echo "Hello world";" was meant to have no semi colon - Original Message - From: "Kris Reid" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Thursday, August 14, 2003 12:37 PM Subject: [PHP] error problem When I have an error in my code nothing gets written

Re: [PHP] error problem

2003-08-14 Thread Randy L Johnson Jr
there is something in the php.ini file that turns the display errors in browser on and off...   Randy    ---Original Message---   From: Kris Reid Date: Wednesday, August 13, 2003 10:36:59 PM To: PHP List Subject: Re: [PHP] error problem   Sorry the second "echo "Hello wo

Re: [PHP] error problem

2003-08-14 Thread Larry E . Ullman
Sorry the second "echo "Hello world";" was meant to have no semi colon Just so you know, PHP allows the last command in a section to not have a semi-colon. Therefore the code would not cause an error message. If you're trying to purposefully cause an error, you'll need to change your trigger.