Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a php/html/js page.

I have two buttons. They both need to submit the same form data, but I want one to link to another page(which needs the form data from this page) and one to do something on the current page.

I don't know how to make the linkage button go to another page AND post the same form data AND not lose the post data (using something like header('Location:')).

I can't set form action="page.php" because then both buttons would change pages. A form within a form doesn't work either.

My setup is as follows:

<form method="post" action="" name="aform">
<table>
<tr><td><input type="submit" name="button" value"Clickit"></td>
<td><input type="submit" name="button2" value"Click to link"></td>
</table>
</form>

Help appreciated.

share|improve this question
1  
Different buttons alone won't work. You'll need JavaScript. – j08691 Mar 8 '12 at 19:36
Use the JS to build the page I want to link to, or use it to perform the submit? – Hybrid Mar 8 '12 at 19:46
You'll need it to handle the different button submit actions. – j08691 Mar 8 '12 at 19:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.