How do I submit a form in the background? Or rather what is the best way of doing it?
I want to have a single page that I can use javascript to update, but I need to run PHP script server side and get this to the client.
E.G. A page that has data from a data base, but when you push next the page does not reload, but rather the data is retrieved from PHP script and then this new data is updated on the page using javascript. So really the form will be in a seperate page (*.php file) - I assume.
Would one do this with an IFrame, an <object> tag or what??