Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- echo "<table border='1'>";
- echo "<tr><th>Quest Level</th> <th>Quest NPC</th> <th>Quest Name</th> <th>Quest Beschreibung</th> <th>Hizugef�gt am</th>";
- // keeps getting the next row until there are no more to get
- while($row = mysql_fetch_array( $result )) {
- echo "<tr><td><img src='images/user.png'>";
- echo $row['level'];
- echo "</td><td>";
- echo $row['npc'];
- echo "</td><td>";
- echo $row['quest'];
- echo "</td><td>";
- echo$row['beschreibung'];
- echo "</td><td>";
- echo$row['time'];
- echo "</td></tr>";
- }
- echo "</table>";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement