Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/11/2010, 14:32
Curner13
 
Fecha de Ingreso: febrero-2007
Mensajes: 87
Antigüedad: 17 años, 2 meses
Puntos: 2
Respuesta: Como en listar 3 columnas Php MySQL

PRUEBA CON ESTO ESPERO ESTE BIEN SI NO DIME QUE PASA PARA CORREGIR

echo "<table width='500' height='103' border='0' cellpadding='5' cellspacing='3'>";

while($row = mysql_fetch_array($result))
{
$id = $row["id"];
$nombre = $row["nombre_juegos"];
$imagen = $row["imagen"];

$rows=4;
$column=3;

for($=1; $i<=$rows; $i++)
{
echo "<tr> <td>$id</td> <td>$nombr</td> <td>$imagen</td> </tr>";
}
}

echo "</table>";