Advertisement
Guest User

ordie

a guest
Jul 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. require_once 'config.php';
  3.  
  4.  
  5. class DB_connection{
  6.  
  7. private $connect;
  8. function __construct(){
  9. $this->connect = mysqli_connect (hostname,username,password,db_name ) or die (" DB connection error "));
  10. }
  11.  
  12. public function get_connection()
  13. {
  14. return $this->connect;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement