Advertisement
Guest User

Untitled

a guest
Jan 20th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. /**
  2. * @param $dbHost The database host, for example localhost or 127.0.0.1
  3. * @param $dbUser The username for the database connection
  4. * @param $dbDatabase The database name used for the connection
  5. * @param $dbPass The password for the database connection (can be empty)
  6. */
  7. function __construct($dbHost, $dbUser, $dbDatabase = "", $dbPass = "") {
  8. $this->dbDatabase=$dbDatabase;
  9. $this->dbHost=$dbHost;
  10. $this->dbPass=$dbPass;
  11. $this->dbUser=$dbUser;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement