Advertisement
rsu18amurray

class.db.php

Jun 28th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. class db {
  3.    
  4.     public $conn;
  5.    
  6.     function __construct(){
  7.         $this->conn = new mysqli('localhost:8889', 'whoishereuser', 'whoisherepass','whoishere');
  8.         if($this->conn->connect_error){
  9.             die('Connection Failed: ' . $this->conn->connect_error);
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement