Vineet wrote:[color=blue]
> Hello,
>
> Can ANy body tell me what is the emaning of $$<var_name> in PHP.
>
> Regards,
>
> Vineet
> http://www.compose.co.in[/color]
$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
Comment