Advertisement
SashaRaaa

Untitled

Jul 19th, 2018
681
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.  
  13. $mybook->showbook();
  14.  
  15. ?>
  16.  
  17.  <html>
  18.     <head>
  19.         <meta http-equiv="Content-Type" content="text/html; meta charset="utf-8">
  20.     </head>
  21.     <body>
  22.  
  23.     <form name="test" method="post" action="/addReview.php">
  24.         <p><input type="text" name="review"> <input type="submit" value="Оставить отзыв"></p>
  25.     </form>
  26.  
  27.     </body>
  28.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement