Advertisement
SashaRaaa

Untitled

Jul 20th, 2018
1,023
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. header ( 'Location: http://php1.local/1guestbook.php' );
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement