Guest User

Untitled

a guest
Apr 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. $conexion = mysqli_connect( "localhost", "root", "", "bdnutriologo")or
  3. die( "Problemas con la conexión" );
  4.  
  5. $registros = mysqli_query( $conexion, "select *
  6. from tipo_menu")or
  7. die( "Problemas en el select:" . mysqli_error( $conexion ) );
  8.  
  9. while ( $reg = mysqli_fetch_array( $registros ) )
  10.  
  11.  
  12. {
  13. echo "<table>";
  14. echo "<tr><th>ID Menu:</th><td>" . $reg[ 'id_menu' ] . "</td></tr><br>";
  15. echo "<tr><th>Comidas Diarias:</th><td>" . $reg[ 'cantidad_comidas' ] . "
  16. </td></tr><br>";
  17. echo "<tr><th>Nombre:</th><td>" . $reg[ 'nombre' ] . "</td></tr><br>";
  18. echo "<tr><th>Descripcion:</th><td>" . $reg[ 'descripcion' ] . "</td></tr>
  19. <br>";
  20.  
  21.  
  22. }
  23.  
  24. mysqli_close( $conexion );
  25. ?>
Add Comment
Please, Sign In to add comment