nt: Sunday, March 09, 2003 1:34 PM
Subject: [PHP-DB] Dynamic Variable names
>
>
>
>
> Just a quick question about dynamic variables
>
> would like to end up with a variable called
> $tips_1
> $tips_2
> ...
> $tips_n
>
> where "n" is the value of the
Just a quick question about dynamic variables
would like to end up with a variable called
$tips_1
$tips_2
...
$tips_n
where "n" is the value of the variable $sid
i have tried
$tips . '$sid';
and other variants, but i can't get one that doesn't return a parse error or
T_VARIABLE error.
___