<?php
// link information
$link_array = array(
 array("http://www.google.com","Google"),
 array("http://www.yahoo.com","Yahoo!"),
 array("http://www.excite.com","Excite"),
 array("http://www.msn.com","MSN"),
 array("http://www.askjeeves.com","Ask Jeeves"),
 array("http://www.webcrawler.com","Webcrawler")
);

echo "<h4>Search Engines</h4>\n";
echo "<ul>\n";

foreach($link_array as $website){
 list($site, $name) = $website;
 echo " <li><a href=\"$site\" target=\"_blank\">$name</a></li>\n";
}

echo "</ul>\n"
?>