The only problem with the onClick routine, is that the page will be refreshed before the information is added to the database, so the page will not be refreshed with the new information. Once the submit button is hit, it loads some php code which enters information into a database, after that I need the navagation page to be updated.
Any ideas?
Thanks,
--Matt
Chris King wrote:
No, the only way to do this really is in javascript, just put in the button
<INPUT TYPE="SUBMIT" VALUE="Submit Form" onClick="top.frames[0].document.location.href='nav2.html';">
And that will do it..
Hope that helps
Chris King