SashaRaaa

Untitled

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