Advertisement
Guest User

Untitled

a guest
Feb 27th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Conexao{
  2.  
  3. private $host = 'localhost';
  4. private $db = 'my_db';
  5. private $user = 'root';
  6. private $pass = '';
  7.  
  8. public function __construct( ){
  9. $pdo = new PDO('mysql:host='.$this->host.';dbname='.$this->db,$this->user,$this->pass);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement