Re: [PHP] Accessing Variables by Name

2002-05-14 Thread Miguel Cruz
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

Re: [PHP] Accessing Variables by Name

2002-05-14 Thread Philip Olson
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