Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Untitled

By: a guest on Feb 11th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 52  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Unbenanntes Dokument</title>
  6. </head>
  7. <?php
  8. $verbindung = mysql_connect ("localhost",
  9. "root", "")
  10. or die ("keine Verbindung möglich.
  11.  Benutzername oder Passwort sind falsch");
  12.  
  13. mysql_select_db("Flyff")
  14. or die ("Die Datenbank existiert nicht.");
  15. ?>
  16.  
  17. <?php
  18. $abfrage = "SELECT accounts FROM username";
  19. $ergebnis = mysql_query($abfrage);
  20. while($row = mysql_fetch_object($ergebnis))
  21.    {
  22.    echo "$row->accounts";
  23.    }
  24. ?>
  25.  
  26.  
  27. <body>
  28. </body>
  29. </html>