Ver Mensaje Individual
  #17 (permalink)  
Antiguo 15/11/2009, 15:08
bolt87
 
Fecha de Ingreso: mayo-2009
Mensajes: 67
Antigüedad: 14 años, 11 meses
Puntos: 0
Respuesta: funcion explode - problema

gracias, la verdad es q llevo poco tiempo con esto y no se me da mui bien
bueno ya se lo he quitado, pero no me sale el primer registro, xq?
q debo hacer?
gracias y perdona las molestias

<?php do {
$registro = $row["texto"];
$elemento = explode(';',$registro);
?>
<tr>
<td class="fila"><?php echo $elemento[0]; ?></td>
<td class="fila"><?php echo $elemento[1]; ?></td>
<td class="fila"><?php echo $elemento[2]; ?></td>
<td class="fila"><?php echo $elemento[3]; ?></td>
<td class="fila"><?php echo $elemento[4]; ?></td>
<td class="fila"><?php echo $elemento[5]; ?></td>
<td class="fila"><?php echo $elemento[6]; ?></td>
<td class="fila"><?php echo $elemento[7]; ?></td>
<td class="fila"><?php echo $elemento[8]; ?></td>
<td class="fila"><?php echo $elemento[9]; ?></td>
</tr>
<?php } while ($row = mysql_fetch_array($registros)); ?>