Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2011, 17:55
gmurop
 
Fecha de Ingreso: marzo-2011
Ubicación: Veracruz
Mensajes: 92
Antigüedad: 13 años, 9 meses
Puntos: 3
Respuesta: Informar que no hubo resultados

Código PHP:
Ver original
  1. <?php
  2.  
  3. if(isset($_POST['matric']) && !empty($_POST['matric'])) {
  4.  
  5. $conexion = mysql_connect("localhost","root","password");
  6. mysql_select_db("base", $conexion);
  7.  
  8. $queEmp = "SELECT * FROM padron WHERE matric like '%$_POST["matric"]'% ORDER BY matric ASC";
  9. $resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
  10. $totEmp = mysql_num_rows($resEmp);
  11. ?>
  12.  
  13. <?php
  14.  
  15. if($totEmp==0){
  16. echo "No hay resultados";
  17. } else {
  18.  
  19. if($rowEmp['matric'] != $_POST['matric'])
  20.     {
  21.  
  22. echo "Ha habido un error al insertar los valores.";
  23.  
  24. } else {
  25.  
  26.    while ($rowEmp = mysql_fetch_assoc($resEmp)) {
  27.       echo "<strong>".$rowEmp['nombre']." ".$rowEmp['apellido']."</strong><br>";
  28.       echo "Direccion: ".$rowEmp['matric']."<br>";
  29.       echo "Telefono: ".$rowEmp['domicilio']."<br><br>";
  30.    }
  31.  
  32.    }
  33.  
  34. }
  35.  
  36. } else {
  37.  
  38. echo "Error, no ha introducido ningun documento.";
  39.  
  40.  
  41. }
  42. ?>

Ahi medio le moví, te agregue un if y modifiqué un poquito la query, a ver checa y si no me dices.