Ver Mensaje Individual
  #21 (permalink)  
Antiguo 25/10/2010, 08:34
totolia
 
Fecha de Ingreso: mayo-2008
Mensajes: 315
Antigüedad: 16 años
Puntos: 7
Respuesta: Quiero mostrar mas de un dato...

Cita:
Iniciado por zapt142 Ver Mensaje
Código PHP:
<table width='800' border='1' align='center'>
<
tr>
<
th width='90' scope='col'>FOLIO</th>
<
th width='66' scope='col'>FECHA</th>
<
th width='65' scope='col'>HORA</th>
<
th width='69' scope='col'>UNIDAD</th>
<
th width='66' scope='col'>NOMBRE</th>
</
tr>
while(
$fila=mysql_fetch_array($ART_SEL)){
echo 
"
<tr>
<td><a href='tu_direccion'"
>.$fila['folio']."</a></td>
<td>"
.$fila['fecha']."</td>
<td>"
.$fila['hora']."</td>
<td>"
.$fila['unidad']."</td>
<td>"
.$fila['nombre']."</td>
</tr>
"
;



</
table
saludos, espero te sirva
hay un error en <td><a href='tu_direccion'">.$fila['folio']."</a></td>, debe ser así <td><a href='tu_direccion'>".$fila['folio']."</a></td>