Guest User

Untitled

a guest
Mar 11th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. header("Content-Type: text/plain");
  3. //Einstellungen
  4.  
  5. error_reporting(-1); //0: Kein Fehler melden; -1: Alle Fehler melden
  6.  
  7. $mysql_username = "wp7";
  8.  
  9. $mysql_password = "flora";
  10.  
  11. $database = "Witze";
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. mysql_connect("localhost", $mysql_username, $mysql_password);
  19.  
  20. mysql_select_db($database);
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment