Advertisement
SashaRaaa

Untitled

Jul 20th, 2018
944
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. $guestbook = new GuestBook( __DIR__ . '/reviews.txt');
  6.  
  7. ?>
  8.  
  9.   <html>
  10.     <head>
  11.         <meta http-equiv="Content-Type" content="text/html; meta charset="utf-8">
  12.     </head>
  13.     <body>
  14.    
  15. <?php
  16. $guestbook->getData();
  17. $guestbook->showbook(); ?>
  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>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement