Advertisement
SashaRaaa

Untitled

Jul 19th, 2018
790
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. }
  11. $mybook->save();
  12. $mybook->showbook();
  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