Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/12/2011, 08:45
Avatar de Patriarka
Patriarka
 
Fecha de Ingreso: enero-2011
Ubicación: Moreno, Buenos Aires, Argentina
Mensajes: 2.851
Antigüedad: 13 años, 3 meses
Puntos: 288
Respuesta: Recuperacion de datos

Cita:
Iniciado por Patriarka Ver Mensaje
por que no escapas al html?
Código PHP:
Ver original
  1. if (mysql_num_rows($result) > 0){
  2. ?>
  3. <table>
  4. <?php
  5.     while ($row = mysql_fetch_array($result)){
  6. ?>
  7. <tr>
  8.    <td>Nombres</td>
  9.    <td><?php echo $row["nombre"]; ?></td>
  10.  </tr>
  11. <?php
  12. }
  13. ?>
  14. </table>