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?
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
Or How do I make an asynchronous GET request in PHP?