Guest User

Untitled

a guest
Sep 25th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. ##############################################
  3. # #
  4. # ZoidIndustry CMS #
  5. # #
  6. ##############################################
  7.  
  8. //*********** MySQL Configuration ***********/
  9.  
  10. $host = "xxxx";
  11. $username = "xxxx";
  12. $password = "xxxx";
  13. $dbname = "xxxx";
  14. $connect = mysql_connect($host, $username, $password) or die(mysql_error());
  15. mysql_select_db($dbname, $connect) or die("Could not connect to database, error: ".mysql_error());
  16. ?>
Add Comment
Please, Sign In to add comment