Guest User

Untitled

a guest
Feb 1st, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. require_once("class_starten.php");
  3. class core {
  4. public $verbindung;
  5. private $host = "localhost";
  6. private $username = "root";
  7. public $password = "123kamil*A";
  8. private $datenbank = "testdb";
  9. public function __construct()
  10. {
  11. $this->verbindung = mysql_connect($this->host, $this->username, $this->password)or die (mysql_error());
  12. mysql_select_db($this->datenbank, $this->verbindung)or die (mysql_error());
  13. }
  14. }
  15. ?>
Add Comment
Please, Sign In to add comment