This blog has been neglected due to the success of Solidshops.com
31May/07
how to generate php variables on the fly
this is a prette neat trick:
$variable_name = “varname”;
${$variable_name} = “this is the value”;
echo $varname;
Popularity: 1% [?]


