![](http://s3.subirimagenes.com:81/otros/previo/thump_5787725kkk.jpg)
tengo que hacer esa tabla y hacer un if.... para seleccionar cuales son divisores y cuales no...
tengo este codigo pero no consigo realizar la tabla dicha. soy principiante en php...
<html>
<head>
<title>Practica 1 PHP</title>
</head>
<body>
<h1>Nombres Divisibles</h1>
<?php
echo "<table border>";
for($i=0; $i<1; $i++){
$i [1] = array(50);
echo"<tr>";
for($j=0; $j<12; $j++){
echo "<td> $i </td>";
}
echo "</tr>";
//echo "</table>";
}
?>
</body>
</html>
Muchas gracias!