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 is invalid, but is there a way to do this?
$$stringdata = $myvariable; http://php.net/manual/en/language.variables.variable.php > I know about associative arrays, but they do not solve my particular > problem. Really? miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php