Guest User

Untitled

a guest
Jul 8th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. class DBController
  4. {
  5.  
  6. private $host = "localhost";
  7.  
  8. private $user = "root";
  9.  
  10. private $password = "";
  11.  
  12. private $database = "star_rating";
  13.  
  14. private static $conn;
  15.  
  16.  
  17. function __construct()
  18. {
  19. $this->conn = new PDO('mysql:host=$this->host; dbname=$this->database',$this->user,$this->password);
  20. var_dump($a->conn);
  21. }
  22. }
  23.  
  24. $a = new DBController;
  25.  
  26. die;
Add Comment
Please, Sign In to add comment