php turn an array into variables matching keys
php associative array to variables
The function you want is
<?php
extract($array);
?>
You can also do it the hard way.
php turn an array into variables matching keys
php associative array to variables
The function you want is
<?php
extract($array);
?>
You can also do it the hard way.