Is there a function that will create a bunch of variables from an array where the key is the name of the variable and the value is the name of the variable?
for example:
<?
$array = array ('uno' => 'one','dos' => 'two','tres' => 'three');
?>
after the function you would have:
$uno = 'one';
$dos = 'two';
$tres = 'three';