Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Chodowanie kur</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <table>
  11. <?php
  12.  
  13. header('Location: index.php');
  14.  
  15. if (isset($_POST['nick'])) {
  16. $plik = fopen("koment.txt", "a");
  17. fwrite($plik,date("d/m/y h:i")."\n");
  18. fwrite($plik, $_POST['nick']."\n");
  19. fwrite($plik,$_POST['koment']."\n");
  20. fclose($plik);
  21. }
  22. ?>
  23. </table>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement