Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Programme</title>
  5. </head>
  6. <body>
  7. <?php
  8. $user = "root";
  9. $host = "localhost";
  10. $password = "";
  11. $database = "celebrites";
  12. $connexion = mysqli_connect($host, $user, $password);
  13. $db = mysqli_select_db($connexion, $database);
  14. mysqli_close($connexion);
  15. ?>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement