Guest User

Untitled

a guest
Nov 27th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. // config.php
  3. require "dbclass.php";
  4. $localhost="localhost";
  5. $hostuser="root";
  6. $hostpass="yourpass";
  7. $dbname="databasename";
  8. $db = new db();
  9. $db->connect($localhost,$hostuser,$hostpass,$dbname); // connect
  10.  
  11. ?>
Add Comment
Please, Sign In to add comment