I have searched the PHP.net site and originally thought of some use for the list() function but doesn\'t seem to accomplish the goal:
list()
I have an unknown
You can make use of list() function if you know there are only 3 values.
$array = array('Life', 'living', 'Health'); list($life, $living, $health) = $array; echo $life; echo $living; echo $health;
Note - you can make use of implode function as well.
implode