Ver Mensaje Individual
  #13  
Antiguo 01-07-2008
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Así probé yo y funciona:

Código PHP:
<?php
mysql_query
('set @fila = 0');
$filas mysql_query('select @fila := @fila + 1 as fila, clave, nombre from cliente')
?>
<table>
<tr>
    <th>Fila</th>
    <th>Clave</th>
    <th>Nombre</th>
</tr>
<?php while ($fila mysql_fetch_assoc($filas)): ?>
<tr>
    <td><?php echo $fila['fila'?></td>
    <td><?php echo $fila['clave'?></td>
    <td><?php echo $fila['nombre'?></td>
</tr>
<?php endwhile ?>
</table>
// Saludos
Responder Con Cita