Posted by chotiwallah on 11/29/66 11:28
Vineet wrote:
> Hello,
>
> Can ANy body tell me what is the emaning of $$<var_name> in PHP.
>
> Regards,
>
> Vineet
> http://www.compose.co.in
$first_var = "second_var";
$$first_var = "some value",
means $second_var = "some_value", the value of first_var becomes the
name of the second var
micha
[Back to original message]
|