Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/12/2006, 06:42
hebo
 
Fecha de Ingreso: julio-2005
Mensajes: 86
Antigüedad: 18 años, 9 meses
Puntos: 3
Simplemente yo lo haría combinando HTML y PHP.
Si sabes utilizar los comandos de php while y mysql_fetch_array, te será muy facil
Yo haría el siguiente código:
Código PHP:
<table>
<tr>
<?
while ($info mysql_fetch_array($result)) {
?>
<td><?=$info['nombre']; ?></td>
<? ?>
</tr>
<tr><?
while ($info mysql_fetch_array($result1)) {
?>
<td><?=$info['telefono']; ?></td>
<? ?>
</tr>
<tr>
<?
while ($info mysql_fetch_array($result2)) {
?>
<td><?=$info['domicilio']; ?></td>
<? ?>
...
</table>
Cada $result $result1 $result2... Son los resultados a elegir por ejemplo:
$result = mysql_query("SELECT nombre FROM clientes");
Espero te quede claro con este ejemplo ;)