Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/07/2015, 05:29
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: busquedas mysql+link+carga de datos

resultados:
Código PHP:
Ver original
  1. <?php
  2. if($totalRows_result>0)
  3. {
  4. echo    "<center>Se han encontrado <b>".$totalRows_result."</b> coincidencias</center><br><br>";
  5. echo "<table>";
  6. echo    "<tr>
  7.         <td>Nombre</td><td>Apellido</td><td>Telefono</td>
  8.    </tr>";
  9. while($row = $result->fetch_array())
  10.     {
  11.        
  12. echo    "<tr>
  13.         <td>".$row['nombre']."</td><td>".$row['apellido']."</td><td>".$row['telefono']."</td>
  14.    </tr>";
  15.     }
  16.    
  17. echo "</table>";
  18. }else{
  19.     echo "No se an encontrado resultados";
  20. }
  21. ?>