Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. whatever.html
  2.  
  3. <form action = "act.php name="first" method="post">
  4. <input type="text" name="value"></input>
  5. <input type="submit"></input>
  6. </form>
  7.  
  8.  
  9. act.php
  10.  
  11. <?PHP
  12. //then as far as i can tell just a second redirect to my submission view
  13.  
  14.  
  15. header("HTTP/1.1 303 See Other");
  16. header('Location:url/thankyou.view.php
  17.  
  18. ?>
  19.  
  20. thankyou.view.php
  21.  
  22. <h5>Thanks!</h5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement