RE: [PHP] Hello $variable, whats your name?

2001-03-22 Thread Cal Evans
If it's in some kind of collections, you could iterate through the collection. ($HTTP_POST, $HTTP_GET, any associative array, etc.) Cal http://www.calevans.com -Original Message- From: JCampbell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 6:06 PM To: Main PHP List

RE: [PHP] Hello $variable, whats your name?

2001-03-22 Thread Jerry Lake
$HTTP_POST_VARS Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: JCampbell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 4:06 PM To: Main PHP List

Re: [PHP] Hello $variable, whats your name?

2001-03-22 Thread Data Driven Design
You can cycle through the $HTTP_POST_VARS or $HTTP_GET_VARS arrays depending on whether you use 'post' or 'get' for the methos in you form while(list($key,$val)=each($HTTP_POST_VARS)) { print "$key:$valbr\n"; } - Original Message - From: JCampbell [EMAIL PROTECTED] To: Main PHP List

Re: [PHP] Hello $variable, whats your name?

2001-03-22 Thread Noah Spitzer-Williams
theres even $GLOBALS() ""Data Driven Design"" [EMAIL PROTECTED] wrote in message 001301c0b347$d96ca5c0$[EMAIL PROTECTED]">news:001301c0b347$d96ca5c0$[EMAIL PROTECTED]... You can cycle through the $HTTP_POST_VARS or $HTTP_GET_VARS arrays depending on whether you use 'post' or 'get' for the