I have a session that stores an array.
Let's say, my sessions are cars and music that each stores the following:
<?php
$_Session['cars'] =array("Volvo","BMW","Toyota");
$_Session['music'] = array("Beatles", "Carpenters", "Sting");
?>
Now, how can I echo the following based on my sessions:
BMW Sting
Thanks in advance. :)