1
2
3
4
se ordenen así:
1 2 3 4....
y no se muy bién como hacerlo... quiero mostrar las 1000 primeras (supongo que con un limit lo podre hacer, pero quiero que se ordenen en una tabla con 20 celdas de ancho y 50 de alto, y se ordenen horizontalmente de izquierda a derecha)
¿Alguna sugerencia??
Gracias adelantadas
PD: aqui mi codigo:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Index</title>
</head>
<body>
<H1>Mostrar resultados de una consulta en una tabla horizontal</H1>
<?php
include("connect.php");
$link=Conectarse();
$result=mysql_query("select ID from mi_tabla order by ID asc",$link);
?>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=1>
<?php
while($row = mysql_fetch_array($result)) {
$id = $row["ID"];
printf("<tr><td><a href='prueba2.php?id=".$id."'><img src='images/image.png.png' border='0'></a></td></tr>"
,$id);
}
mysql_free_result($result);
mysql_close($link);
?>
</table>
</body>
</html>