On Tue, 14 May 2002, Steven Walker wrote:
> I couldn't find this in the documentation or on marc... Is there a way
> to access a variable by name using a string value? For example:
>
> $myvariable = 10;
> $stringdata = "myvariable";
> $[$stringdata] == $myvariable;
>
> Obviously the last line i
These are called variable variables, and can
be read about here:
http://uk.php.net/manual/en/language.variables.variable.php
Replace your [ ] with { } and you'll be good
to go.
Regards,
Philip Olson
On Tue, 14 May 2002, Steven Walker wrote:
> Hi,
>
> I couldn't find this in the documenta
Hi,
I couldn't find this in the documentation or on marc... Is there a way
to access a variable by name using a string value? For example:
$myvariable = 10;
$stringdata = "myvariable";
$[$stringdata] == $myvariable;
Obviously the last line is invalid, but is there a way to do this? I
know abo
3 matches
Mail list logo