Advertisement
SashaRaaa

Untitled

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