Yes!
Add '[]' to the end of the name.
This will inform php that all fields with that name should be put into an
array after submission.
e.g.
<FORM...
<INPUT TYPE="TEXT" NAME="name[]">
<INPUT TYPE="TEXT" NAME="name[]">
<INPUT TYPE="TEXT" NAME="name[]">
...
After submit php will have created an array called $name with 3 entries.
-Stewart
-----Original Message-----
From: seriousj [mailto:[EMAIL PROTECTED]]
Sent: 09 May 2001 12:20
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Variables in variable names
The info is stored in the variables intitally by information entered by a
user on a webpage, can you have the browser store the info in an array and
have it passed by a form "post" command?
""Taylor, Stewart"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Maybe an array would be more appropriate.
> e.g.
>
> $name[$i] =
> .
> .
>
>
>
>
> -Stewart
> -----Original Message-----
> From: seriousj [mailto:[EMAIL PROTECTED]]
> Sent: 09 May 2001 12:09
> To: [EMAIL PROTECTED]
> Subject: [PHP] Variables in variable names
>
>
> Hello,
>
> I need some help (newbie).
>
> I have some variable names with the form:
> $name_1
> $name_2
> $name_3
> $name_4...
>
> I want to access them by doing something like this:
> $i=0
> $name_$i
>
> This doesn't work, how do I include another variable in the name of a
> variable?.
>
> Cheers
> John
>
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]