Tema: Importante
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/03/2008, 20:03
Avatar de stramin
stramin
 
Fecha de Ingreso: marzo-2008
Ubicación: Cubil felino
Mensajes: 1.652
Antigüedad: 16 años, 1 mes
Puntos: 336
Re: Importante

muy pocos datos...

creo que quieres rescatar datos de una base de datos y mostrar 4 cierto?

Código PHP:
<table>
<tr>
<td>Nombre</td><td>Id VATSIM</td><td>Rango</td><td>Avión</td>
</tr>
<?php
$DAT
=mysql_fetch_array($datos);
for(
$f=1;$f<=4;$f++){
?>
<tr>
<td><?php echo $DAT['nombre']; ?></td><td><?php echo $DAT['vatsim']; ?></td><td><?php echo $DAT['rango']; ?></td><td><?php echo $DAT['avion']; ?></td>
</tr>
<?php ?>
</table>