Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/05/2010, 02:25
Vallu
 
Fecha de Ingreso: marzo-2010
Ubicación: Barcelona
Mensajes: 657
Antigüedad: 14 años, 1 mes
Puntos: 26
Respuesta: Mostrar resultados seguidos

Prueba con algo asi:

Código PHP:
$sql "SELECT fotoclientes FROM clientes";
$resmysql_query($sql) or die (mysql_error());

echo 
"<table><tr>";

while (
row=mysql_fetch_array($res)) {
    echo 
"<td><img src='$row['fotoclientes']'></td>";
}

$sql "SELECT textoclientes FROM clientes";
$resmysql_query($sql) or die (mysql_error());

echo 
"</tr><tr>";
while (
row=mysql_fetch_array($res)) {
    echo 
"<td>echo $row['textoclientes']</td>";
}
echo 
"</tr></table>"