Advertisement
Guest User

Untitled

a guest
Feb 27th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. conexion.php
  2. <?php
  3. echo "<meta charset='utf-8'>";
  4. $servidor="localhost";
  5. $user="root";
  6. $password="";
  7. $bbdd="filmoteca";
  8. //conectamos
  9. $conexion = mysqli_connect($servidor, $user, $password, $bbdd);
  10. mysqli_query($conexion,"SET NAMES 'UTF8'");
  11. mysqli_select_db($conexion, $bbdd);
  12. ?>
  13.  
  14. $consulta="SELECT * FROM peliculas WHERE titulo LIKE '%$titulo%' ORDER BY titulo;";
  15.  
  16. $resultado=mysqli_query($conexion,$consulta) or die("Problemas con la query...");
  17.  
  18. while($dato=mysqli_fetch_array($resultado)){
  19. }
  20. mysqli_free_result($resultado);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement