Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Last active August 29, 2015 13:56
Show Gist options
  • Save flagoworld/8797849 to your computer and use it in GitHub Desktop.
Save flagoworld/8797849 to your computer and use it in GitHub Desktop.
<html>
<br>
<body>
<?php
$supers=array
(
"Earth"=>array('The Hulk', 'Captain America', 'Black Widow', 'Hawkeye'),
"Asgard"=>array('Thor','Loki')
);
foreach ($supers as $origin => &$heroes)
{
echo '<ol>';
sort($heroes);
foreach ($heroes as $hero)
{
echo "<li>{$hero}</li>";
}
echo '</ol>';
}
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment