At 09.05.01 23:08, you wrote:
>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?.
What you´re looking for is variable variables, Try this:
for ($i=0; $i < $max_var_count;$i++)
{
$tmp="name_".$i;
$show_var_name_content=$$tmp;
}
THT Oliver
--
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]