Advertisement
Guest User

Untitled

a guest
Mar 11th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class MySQL {
  2. private $_link = null;
  3. private $_host;
  4. private $_user;
  5. private $_password;
  6. private $_bdd;
  7.  
  8. /* Constructeur */
  9. function mysql($a_host, $a_user, $a_pass, $a_bdd) {
  10. $this->_host = $a_host;
  11. $this->_user = $a_user;
  12. $this->_password = $a_pass;
  13. $this->_bdd = $a_bdd;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement