Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4.  
  5. </head>
  6. <body>
  7.  
  8. <h1> Dein Input</h1>
  9. <?php
  10. $n = htmlspecialchars($_POST['qname']);
  11. $j = htmlspecialchars($_POST['jahr']);
  12. $q = htmlspecialchars($_POST['quote']);
  13. $file = 'quotes.txt';
  14. $current = file_get_contents($file);
  15. $current .= $n+$j+":"+$q+"\n";
  16. file_put_contents($file, $current); ?>
  17.  
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement