https://ideone.com/pXPL2m <?php
$gazeteler = array(
array("***","fanatik","ganyan","altılı","spor"),
array("cumhuriyet","zaman","tercüman","haber","habertürk"),
array("takvim","posta","star","hürriyet","milliyet"),
array("PCNET","CHIP","DATA","PHP","Photoshop")
);
for ($i=0; $i<count($gazeteler); $i++) {
echo "<ul>";
for ($x=0; $x<count($gazeteler[$i]); $x++) {
echo "<li>".$gazeteler[$i][$x]."</li>";
}
echo "</ul>";
}
/*
echo "<ul>";
echo "<li>".$gazeteler[0][0]."<li>";
echo "<li>".$gazeteler[0][1]."<li>";
echo "<li>".$gazeteler[0][2]."<li>";
echo "</ul>";
echo "<ul>";
echo "<li>".$gazeteler[1][0]."<li>";
echo "<li>".$gazeteler[1][1]."<li>";
echo "<li>".$gazeteler[1][2]."<li>";
echo "</ul>";
echo "<ul>";
echo "<li>".$gazeteler[2][0]."<li>";
echo "<li>".$gazeteler[2][1]."<li>";
echo "<li>".$gazeteler[2][2]."<li>";
echo "</ul>";
echo "<ul>";
echo "<li>".$gazeteler[3][0]."<li>";
echo "<li>".$gazeteler[3][1]."<li>";
echo "<li>".$gazeteler[3][2]."<li>";
echo "</ul>";
*/
?>KAYNAK:
Fehmi UYAR (Youtube)