Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. session_start();
  3. $host = "localhost";
  4. $user = "root";
  5. $pass = "";
  6. $database = "Website";
  7.  
  8. $conn = mysql_connect($host,$user,$pass);
  9. $db = mysql_select_db($database, $conn) or die(mysql_error());
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement