by seandisanti » Tue Nov 13, 2012 1:44 pm
Do you care if page is reloaded? Because you can have self processing page, where the form action is the same page, and then in the page just check if (isset($_POST)) and handle form data if it is. If you're trying to avoid server requests, ajax is the way to go because you can update just the relevant portion of the page. or if you just want to leave the form up after completion, you can have a self processing page that populates the form fields with the post data when its responding to a post. without seeing your code or knowing exactly what you're going for all we can do is guess