Advertisement
SashaRaaa

Untitled

Jul 20th, 2018
888
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. include __DIR__ . '/guestbook.php';
  4.  
  5. $mybook = new GuestBook( __DIR__ . '/reviews.txt');
  6. $mybook->getData();
  7.  
  8. if ($_POST['review']) {
  9. $mybook->append($_POST['review']);
  10. $mybook->save();
  11.  
  12. header ( 'Location: http://php1.local/1guestbook.php' );
  13. }
  14. ?>
  15.  
  16.  <html>
  17.     <head>
  18.         <meta http-equiv="Content-Type" content="text/html; meta charset="utf-8">
  19.     </head>
  20.     <body>
  21.  
  22.     <form name="test" method="post" action="/addReview.php">
  23.         <p><input type="text" name="review"> <input type="submit" value="Оставить отзыв"></p>
  24.     </form>
  25.  
  26.     </body>
  27.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement