una cosa del genere...
Codice PHP:
echo "<table>";
while($row = mysql_fetch_array($query))
{
echo "<tr>";
for($i = 0; i <= 4; i++)
{
echo "<td>".$row['tuocampo']."</td>";
}
echo "</tr>";
}
echo "</table>";
una cosa del genere...
Codice PHP:
echo "<table>";
while($row = mysql_fetch_array($query))
{
echo "<tr>";
for($i = 0; i <= 4; i++)
{
echo "<td>".$row['tuocampo']."</td>";
}
echo "</tr>";
}
echo "</table>";