Quote:
Originally Posted by KirbyDE
There are dozens of ways to do so.
Here is one:
PHP Code:
foreach ($movies as $genre => $movielist) {
echo "Movies in Genre $genre:<br /><ul>"
foreach ($movielist as $movie) {
echo "<li>$movie</li>\n";
}
echo "</ul><br /><br />";
}
|
That outputted:
Code:
Movies in Genre Science_Fiction:
The Alien
I, Robot
Armaggedon
Movies in Genre Action:
The Matrix
Killer
M-15
Movies in Genre Adventure:
Lord of The Rings
The Hobbit
Indiana Jhones
Thanks