Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Untitled Document</title>
  6. </head>
  7. <body>
  8.  
  9. <?php require("db.php"); ?>
  10.  
  11. <?php
  12. $id = $_GET['id'];
  13.  
  14. if (isset($id))
  15. {
  16. $id = $_GET['id'];
  17. $wynik = DBArrayQuery("select * from dzial where id = $id ");
  18. }
  19. else
  20. {
  21. $wynik = DBArrayQuery("select * from dzial");
  22. }
  23.  
  24. echo "<table border='1'>";
  25. foreach ($wynik as $wiersz) {
  26. echo "<tr>";
  27. foreach ($wiersz as $komorka) {
  28. echo "<td>$komorka</td>";
  29. }
  30. echo "</tr>";
  31. }
  32. echo "</table>";
  33.  
  34. ?>
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement