Forum Moderators: coopster
For using it with both columns I can do as follow:
<?phpeval("$" . $info["name"] . "=\"" . $info["value"] . "\";");?>
But I do not won't to use eval() on the value-column...
no need for eval, you just want a variable variable
$thevarname = $info["name"]; $$thevarname = $info["value"];
echo $thevarname; // should give the value of $info["name"] echo $$thevarname; // should give the value of $info["value"]