There are numerous examples of being able to POST a variable from one PHP script to another.
I want the first script to POST to the second script, but to keep the first script still running. The files are crawler.php and links.php. How do I do this?
|
There are numerous examples of being able to POST a variable from one PHP script to another. I want the first script to POST to the second script, but to keep the first script still running. The files are crawler.php and links.php. How do I do this? | ||||
|
show 9 more comments
feedback
|
|
Use cURL
See http://davidwalsh.name/execute-http-post-php-curl Edit: I just realised you wanted an async call. In that case, you can look into pcntl fork http://php.net/manual/en/book.pcntl.php | ||||
feedback
|
cURLthe solution? – Explosion Pills Oct 25 '11 at 6:14