Advertisement
Guest User

GrzesiekHuj

a guest
Dec 14th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>Lista gier</title>
  5. <link rel="stylesheet" type="text/css" href="cw14.css">
  6. </head>
  7. <body>
  8. <div id="baner"><a href="cw14.php">LISTA GIER</a></div>
  9. <div id="menu">
  10. <ul>
  11. <li>
  12. <a href="cw14.php">Spis gier</a>
  13. </li>
  14. <li>
  15. <a href="dodaj.php">Dodaj grę</a>
  16. </li>
  17. <li>
  18. <a href="http://gry-online.pl">Informacje o grach</a>
  19. </li>
  20. </ul>
  21. </div>
  22. <div id="content">
  23. <?php
  24. if(isset($_GET)){
  25. $dane = file("dane.txt", FILE_IGNORE_NEW_LINES);
  26. $id = intval($_GET['id']);
  27. echo "Edytujemy gre: <br>";
  28. $row = explode('|', $dane[$id]);
  29. print_r($dane[$id]);
  30. }
  31. ?>
  32. <form method="POST" action="editnew.php">
  33. <fieldset>
  34. <legend><b>Edytuj grę</b></legend>
  35. <div class="line">
  36. <label>Tytuł:</label>
  37. <input type="hidden" value="<?php echo $id?>" name="id" />
  38. <span class="error"></span>
  39. </div>
  40. <div class="line">
  41. <label>Tytuł:</label>
  42. <input type="text" name="tytul" id="tytul" id="tytul" value="<?php echo $row[0]?>" />
  43. <span class="error"></span>
  44. </div>
  45. <div class="line">
  46. <label>Gatunek:</label>
  47. <input type="text" name="gatunek" id="gatunek" id="gatunek" value="<?php echo $row[1]?>" />
  48. <span class="error"></span>
  49. </div>
  50. <div class="line">
  51. <label>Cena:</label>
  52. <input type="text" name="cena" id="cena" id="cena" value="<?php echo $row[2]?>" />
  53. <span class="error"></span>
  54. </div>
  55. <input type="submit" value="Dodaj" class="button"/>
  56. </fieldset>
  57. <form>
  58. </div>
  59. </div>
  60. <div id="stopka">Lista gier 2017 opracowano ...</div>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement