Como estan?, les cuento, tengo un sistema de noticias que muestra los resultados con paginator, ¿COMO, hago para que se muestren igual de paginados pero en 3 columnas en vez de una?, pongo el codigo que tengo el cual es muy sencillo.
Desde ya muchas gracias.
Código PHP:
<?php
include("config.php");
$result = mysql_query("SELECT * FROM noticias ORDER BY noticiasid DESC",$connect);
?>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width='580' border='0' cellpadding="0" cellspacing="3">
<tr>
<td><?
$sql = "select * from noticias ORDER BY noticiasid DESC";
//cantidad de resultados por página (opcional, por defecto 20)
$cuantos = 5;
//Incluimos el script de paginación. Éste ya ejecuta la consulta automáticamente
include("paginator.inc.php");
while($myrow = mysql_fetch_array($result))
{
?><b><?
echo $myrow['titulo'];?></b></td>
</tr>
<tr>
<td><?
$imagen = $myrow['imagen'];
if(file_exists("imagenes/$imagen")) {
echo "<img src='imagenes/$imagen' border='0' align='left' hspace='7'>";
}
?> <? echo nl2br($myrow['text1']);?></td>
</tr>
<tr>
<td>
<hr size='1'>
<?
}
?> <?
echo"".$navegacion."";
?></td>
</tr>
</table>