RE: [PHP] POST detection

2003-06-13 Thread Ford, Mike [LSS]
> -Original Message- > From: Johnny Martinez [mailto:[EMAIL PROTECTED] > Sent: 13 June 2003 00:49 > > Will this work for $_GET as well? Yup. > -Original Message- > From: Jason Wong [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 12, 2003 2:14 PM > > if ($_POST) { do_something

RE: [PHP] POST detection

2003-06-12 Thread Johnny Martinez
Will this work for $_GET as well? J -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 2:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] POST detection On Friday 13 June 2003 05:08, Johnny Martinez wrote: > I have a self referring script t

RE: [PHP] POST detection

2003-06-12 Thread Johnny Martinez
Woot! That worked! Thanks Jason and R'twick! Johnny -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 2:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] POST detection On Friday 13 June 2003 05:08, Johnny Martinez wrote: > I hav

Re: [PHP] POST detection

2003-06-12 Thread R'twick Niceorgaw
if ( isset($_POST['var_1']) and isset($_POST['var_2']) ) { your code } - Original Message - From: "Johnny Martinez" <[EMAIL PROTECTED]> To: "PHP General" <[EMAIL PROTECTED]> Sent: Thursday, June 12, 2003 5:08 PM Subject: [PHP] POST detection > Hi all, > I have a self referring script t

Re: [PHP] POST detection

2003-06-12 Thread Jason Wong
On Friday 13 June 2003 05:08, Johnny Martinez wrote: > I have a self referring script that $_POST's two times at the beginning. > The problem is that the first time the script comes up those two $_POST > vars aren't being submitted and the webserver complains. > > If I could detect if the vars wer