<html>
<head>
<title>Pengulangan Tag Html</title>
</head>
<body>
<table border="1" cellpadding="10" cellspacing="0">
<?php
for ($baris=0; $baris < 4; $baris++) {
echo "<tr>";
for ($kolom=0; $kolom < 5; $kolom++) {
echo "<td>($baris,$kolom)</td>";
}
echo "</tr>";
}
?>
</table>
</body>
</html>