Advertisement
Evolutio

Untitled

Apr 17th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. echo "<table border='1'>";
  2. echo "<tr><th>Quest Level</th> <th>Quest NPC</th> <th>Quest Name</th> <th>Quest Beschreibung</th> <th>Hizugef�gt am</th>";
  3. // keeps getting the next row until there are no more to get
  4. while($row = mysql_fetch_array( $result )) {
  5. echo "<tr><td><img src='images/user.png'>";
  6.     echo $row['level'];
  7.     echo "</td><td>";
  8.     echo $row['npc'];
  9.     echo "</td><td>";
  10.     echo $row['quest'];
  11.     echo "</td><td>";
  12.     echo$row['beschreibung'];
  13.     echo "</td><td>";
  14.     echo$row['time'];
  15.     echo "</td></tr>";
  16. }
  17. echo "</table>";
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement