@sercander; buyrun hocam;
<?php
$week = array(
"Pazartesi" => range(1, 5),
"Salı" => range(1, 5),
"Çarşamba" => range(1, 5),
"Perşembe" => range(1, 5),
"Cuma" => range(1, 5)
);
echo "<table border=\"1\">";
$days = array_keys($week);
$lessons = array_values($week);
echo "<thead>";
foreach($days as $day)
{
echo "<td>{$day}</td>";
}
echo "</thead>";
echo "<tbody>";
foreach($lessons as $key => $day)
{
echo "<tr>";
foreach($day as $lesson)
{
echo "<td>{$lesson}</td>\n";
}
echo "</tr>";
}
echo "</tbody>";
echo "</table>";