Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple Submit buttons on same page?

Status
Not open for further replies.

Apollo6

Technical User
Jan 27, 2000
418
US
I have read a few post about doing this but cannot get it to work correctly. I have a 'PERSONAL' button and 'EMPLOYEES' button on a page. If 'PERSONAL' is clicked, goto PageX. If 'EMPLOYEES' is clicked, goto PageY. With the current script, clicking on 'EMPLOYEES' works as expected. When I click on 'PERSONAL', it doesn't go anywhere and adds '?page=PERSONAL' on the end of the current address. Any suggestions would be great.

<table width=&quot;153&quot;>
<tr>
<div align=&quot;center&quot;>
<td width=&quot;143&quot; height=&quot;26&quot; valign=&quot;top&quot;><form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;benefit_data.org.php&quot;>
<input type=&quot;submit&quot; name=&quot;page&quot; value=&quot;PERSONAL&quot; />
</form></div></td>
</tr>
<tr>
<div align=&quot;center&quot;>
<td height=&quot;26&quot; valign=&quot;top&quot;><form name=&quot;form2&quot; method=&quot;post&quot; action=&quot;emp_choice.org.php&quot;>
<input type=&quot;submit&quot; name=&quot;page&quot; value=&quot;EMPLOYEES&quot; />
</form></div></td>
</tr>
<tr>
<td height=&quot;2&quot;></td>
</tr>
</table>
 
My guess would be that both submit buttons have the same name. If changing the name doesn't do the trick, try running each form/post/submit seperately (comment one out or place on a seperate html page.)

There's always a better way...
 
I would say that there's no problem with your html. Try looking at &quot;benefit_data.org.php&quot;.

If you look at the html by itself it does what you expect it to and calls &quot;benefit_data.org.php&quot; and &quot;emp_choice.org.php&quot;.

Hope this helps.

Reality is built on a foundation of dreams.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top