Guest User

Untitled

a guest
Jan 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. include_once("php/inc/conexion.php");
  3. $consulta = "SELECT * FROM estadoCivil;";
  4. $ejecutarConsulta = mysql_query($consulta,$conexion);
  5. $numRegistros = mysql_num_rows($ejecutarConsulta);
  6. mysql_close($conexion);
  7.  
  8. if($numRegistros == 0){
  9. echo "<br /><br /><span class=\"mensaje\">No se encontraron registros con esta b&uacute;squeda :(</span>";
  10. }else{
  11. include_once("estadosCivilesTablaResultados.php");
  12. }
  13.  
  14. include_once("php/inc/mensajes.php");
  15. ?>
Add Comment
Please, Sign In to add comment