Tema: Error
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/06/2015, 12:38
Avatar de xfxstudios
xfxstudios
 
Fecha de Ingreso: junio-2015
Ubicación: Valencia - Venezuela
Mensajes: 2.448
Antigüedad: 8 años, 10 meses
Puntos: 263
Respuesta: Error

usa este codigo y adaptalo a tu base:

Código PHP:
Ver original
  1. <?php
  2. $data = new MySQLi(HOST, USUARIO, PASS, BASE);
  3. $fecha = $data->query("SELECT * FROM cronograma_cursos");
  4. $row_fecha = $fecha->fetch_assoc();
  5. $totalRows_fecha = mysqli_num_rows($fecha);
  6.  
  7. if(mysqli_num_rows($fecha)>0)
  8. {
  9. while($row = mysqli_fetch_assoc($fecha))
  10. {
  11.  
  12.     echo $fila['USER_Id']."".$fila['USER_Nivel']."".$fila['USER_Apellido']."".$fila['USER_Correo']."".$fila['USER_Clave'];
  13.         echo'<br>';
  14. }
  15.  
  16. }
  17. ?>