Advertisement
Guest User

Untitled

a guest
Mar 26th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8.     <head>
  9.         <meta charset="UTF-8">
  10.         <title></title>
  11.     </head>
  12.     <body>
  13.        
  14.         <?php
  15.  
  16. $host="localhost"; // Host name
  17. $username="root"; // Mysql username
  18. $password=""; // Mysql password
  19. $db_name="test2"; // Database name
  20. $tbl_name="test_mysql"; // Table name
  21.  
  22.  
  23. // Connect to server and select databse.
  24. $link = mysqli_connect("$host", "$username", "$password")or die("cannot connect");
  25. mysqli_select_db($link, "$db_name")or die("cannot select DB");
  26.  
  27.  
  28. //mysql_connect( "$host", "$username", "$password")or die("cannot connect");
  29. //mysql_select_db("$db_name")or die("cannot select DB");
  30. // put your code here
  31.        ?>
  32.     </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement