Guest User

Untitled

a guest
Jul 5th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. <?
  2.  
  3. // db_config.php - used to set db name/variables. only mysql supported for now
  4.  
  5.     // DATABASE TYPE - this is the type of db you have. MySQL, MySQLi etc.
  6.     // Currently only MySQL supported.
  7.     $dbtype = "mysql";
  8.    
  9.     // DB User/Pass - This is usually set at the time of the DB creation.
  10.     // If you are unsure, ask your host.
  11.     $dbuser = "mywriter";
  12.     $dbpass = "mywriter";
  13.    
  14.     // DB Name - This is set during the database set up, if you don't know
  15.     // the name, asks your host or create a new DB.
  16.     $dbname = "mywriter";
  17.    
  18.     // DB Host - This is almost always 'localhost', so leave as normal unless
  19.     // your host tells you to write in something different.
  20.     $dbhost = "localhost";
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment