I have a question regarding background processing
I have a form that the visitor can fill out, and I use ajax.
when the customer click send the process page do like this
- 1 - include api 1
- 2 - include api 2
- 3- include api 3
- 4- include mail file ( send mail using PhpMailler and Amazon web service mail )
the total process time of this page is 15 second due to api process time and the time that php mailer use to send the mail ::
What I want is a way to process my form in background , the visitor should redirect to page after submit and php file should be running in background
any ideas ?
thanks