Re: [PHP] dynamic variable names?

2001-07-31 Thread Matt Kaufman
Nevermind, I forgot about variable variables. Matt Kaufman - Original Message - From: "Matt Kaufman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 10:43 PM Subject: Re: [PHP] dynamic variable names? > I don't know if this is wha

Re: [PHP] dynamic variable names?

2001-07-31 Thread Matt Kaufman
I don't know if this is what you want, but take a look at http://www.php.net/manual/en/language.variables.php - You may want to assign them by reference? Matt Kaufman - Original Message - From: "Matthew Delmarter" <[EMAIL PROTECTED]> To: "PHP Mailing List" <[EMAIL PROTECTED]> Sent: Tues

RE: [PHP] dynamic variable names?

2001-07-31 Thread Matthew Loff
RTFM... Read the Fabulous Manual. :) ha ha... It's possible, and downright easy. http://www.php.net/manual/en/language.variables.variable.php -Original Message- From: Matthew Delmarter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 10:58 PM To: PHP Mailing List Subject:

Re: [PHP] Dynamic variable names

2001-07-23 Thread Chris Fry
Casey, You need to loop around on the next page to find the variables - they are all in HTTP_POST_VARS:- while (list($key, $val) = each($HTTP_POST_VARS)) { print "Key = ".$key." Value = ".$val.""; } Chris [EMAIL PROTECTED] wrote: > Hi, > > I'm trying to access variables coming in through