Re: [PHP] Re: isset question

2009-06-18 Thread LAMP
Martin Scotta wrote: error_reporting( E_ALL | E_STRICT ); if you want to be extremely sure about your app (only in develop) Actually, I use error_reporting(E_ALL) while developing :-) Afan On Thu, Jun 18, 2009 at 5:04 PM, LAMP > wrote: Gary wrote: This

Re: [PHP] Re: isset question

2009-06-18 Thread Martin Scotta
error_reporting( E_ALL | E_STRICT ); if you want to be extremely sure about your app (only in develop) On Thu, Jun 18, 2009 at 5:04 PM, LAMP wrote: > Gary wrote: > >> This is what I have now and it works. I do know that on the second line I >> have $_POST['mort']}\n" : " "; in the second half.

Re: [PHP] Re: isset question

2009-06-18 Thread LAMP
Gary wrote: This is what I have now and it works. I do know that on the second line I have $_POST['mort']}\n" : " "; in the second half. I'm not sure I understand the comment about use the !empty if you dont care about PHP. " if you don't care about PHP Notice... " eror_reporting: http://us

[PHP] Re: isset question

2009-06-18 Thread Gary
This is what I have now and it works. I do know that on the second line I have $_POST['mort']}\n" : " "; in the second half. I'm not sure I understand the comment about use the !empty if you dont care about PHP. But this is working, and unless someone sees a problem with it, I will leave it as