I'm still quite new to php hence I've posted this under Newbies rather than Coding as I'm sure it's quite an elementary problem...
I'm looking to process a form where the user will enter details of a site which will be sent to a second .php file which actions the request and inserts a record into a database (a wrapper, essentially).
I want the submission script to act in the background without the page visibly changing but am unsure on how to do this. The only way I've learned how to process forms is to move from the form page to the processing page but I don't know how to action a second page without actually moving the browser to that page.
I suspect that include() might be the answer here but am unsure of how to apply it - the example in the manual doesn't really help (or at least I don't understand it well enough). Does the include() go in the form action tag?
Any help much appreciated!