Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. // define our new class variable
  4.  
  5. $obj = new dw_cms();
  6.  
  7. // setup our database connection variables
  8.  
  9. $obj->host = 'localhost';
  10. $obj->username = 'root';
  11. $obj->password = 'password';
  12. $obj->db = 'dwcms';
  13.  
  14. // connect to our db
  15.  
  16. $obj->connect();
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement