Re: [PHP] Detecting If A Variable Arrives At A Page From A Get Or A Post...

2003-07-25 Thread Burhan Khalid
On Thursday, July 24, 2003, 10:47:08 PM, anachronism wrote: amc> Quick question... amc> I was wondering if there is a way to detect if any given variable came in to amc> a page via post, or a get from a form. if ($_POST['varname']) { came from POST } if ($_GET['varname']) { came from GET } et

RE: [PHP] Detecting If A Variable Arrives At A Page From A Get Or A Post...

2003-07-25 Thread Chris W. Parker
[EMAIL PROTECTED] on Thursday, July 24, 2003 12:47 PM said: > I was wondering if there is a way to detect if any given variable > came in to a page via post, or a get from a form. if(empty($_GET['var'])) { if(empty($_POST['var'])) echo "varia

[PHP] Detecting If A Variable Arrives At A Page From A Get Or A Post...

2003-07-25 Thread anachronism
Quick question... I was wondering if there is a way to detect if any given variable came in to a page via post, or a get from a form. Any help would be appreciated. Thanks, Dennis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php