Selasa, 08 Maret 2011

Studi Kasus-2 Modul 6

<?php
function generate_tabel($br, $kl)
{
for($baris=1; $baris<=$br; $baris++)
{
echo"<tr>";
for($kolom=1; $kolom<=$kl; $kolom++)
{
echo "<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>";
}
echo "</tr>";
}
}

echo "<table border=1>";
generate_tabel(3,4);
echo "</table>";
?>

Tidak ada komentar:

Posting Komentar