Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. if(!empty($_POST)){
  3. $comment = $_POST['comment'];
  4. }
  5. ?>
  6. <html>
  7. <body>
  8. <p>Enter your comment below.</p>
  9. <form action="<?=$_SERVER['PHP_SELF']?>" method = "POST">
  10. <textarea cols=40 row=4 name="comment"></textarea>
  11. <p/>
  12. <input type = submit value="Send">
  13. </form>
  14. <?php
  15. if(!empty($comment)){
  16. echo "<b>You wrote:</b><br>";
  17. echo $comment;
  18. }
  19. ?>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement