Listar Datos en Forma Horizontal
Hola Gracias por tu ayuda ya solucione en parte mi problema, ya me despliega por ejemplo dos registros seguidos ahora necesito que me siga desplegando debajo de los registros algo asi:
R1 R2
R3 R4
------------
Código
<?
//cantidad de resultados por página
$_pagi_cuantos=2;
//Incluimos el script de paginación
include("paginator.oferta.php");
?>
<tr>
<?
echo "<table width='75%' border='0' align='center'>";
echo "<tr>";
while($row = mysql_fetch_array($_pagi_result)){
echo "<td rowspan='2'>";
echo '<div align="center">';
echo "<img src='".$row['imagen']."'border='1' width='150' height='100'><br>";
echo '<font color="#CC0000" size="4">';
echo $row['nombre']."</font><br/>";
echo '<font color="#0000FF" size="3">';
echo $row['marca']."</font><br/>";
echo '<font color="#FF9900" size="3">';
echo $row['precio']."</font><br/>";
echo "<br>";
echo '<font color="#000000" size="2">';
echo $row['caracteristicas']. "<p align='justify'> </p> </font><br/>";
}
echo "</td>";
echo "<hr>";
echo '</div>';
echo "<br>";
echo "</table>";
?>
R1 R2
R3 R4
------------
Código
<?
//cantidad de resultados por página
$_pagi_cuantos=2;
//Incluimos el script de paginación
include("paginator.oferta.php");
?>
<tr>
<?
echo "<table width='75%' border='0' align='center'>";
echo "<tr>";
while($row = mysql_fetch_array($_pagi_result)){
echo "<td rowspan='2'>";
echo '<div align="center">';
echo "<img src='".$row['imagen']."'border='1' width='150' height='100'><br>";
echo '<font color="#CC0000" size="4">';
echo $row['nombre']."</font><br/>";
echo '<font color="#0000FF" size="3">';
echo $row['marca']."</font><br/>";
echo '<font color="#FF9900" size="3">';
echo $row['precio']."</font><br/>";
echo "<br>";
echo '<font color="#000000" size="2">';
echo $row['caracteristicas']. "<p align='justify'> </p> </font><br/>";
}
echo "</td>";
echo "<hr>";
echo '</div>';
echo "<br>";
echo "</table>";
?>
