Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/10/2010, 14:58
Death_Empire
 
Fecha de Ingreso: febrero-2010
Mensajes: 818
Antigüedad: 14 años, 2 meses
Puntos: 55
Respuesta: Quiero mostrar mas de un dato...

en donde tienes $fila=mysql_fetch_array($ART_SEL);

cambiarlo por
Código PHP:
while($fila=mysql_fetch_array($ART_SEL)){
echo 
"<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>
<tr>
<td>"
.$fila['folio']."</td>
<td>"
.$fila['fecha']."</td>
<td>"
.$fila['hora']."</td>
<td>"
.$fila['unidad']."</td>
<td>"
.$fila['nombre']."</td>
</tr>
</table>"
;



asi por cada fila que encuentre te mostrara los datos