Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>Skrypt PHP</title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
  7. </head>
  8. <body>
  9.  
  10. <?php
  11. $tekst="Barbarzyncy, gdy przyjda, ustanowia prawa.\n";
  12. if(!$p = fopen('dane.txt', 'a'))
  13. {
  14. echo "Nie mozna otworzyc pliku";
  15. }
  16. else
  17. {
  18. if (fwrite($p, $tekst) === false)
  19. {
  20. echo "Zapis do pliku nie powiodl sie";
  21. }
  22. else{
  23. echo $tekst;
  24. }
  25. fclose($p);
  26. }
  27. ?>
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement