If a php file has ALOT of intensive crunching to do, and it is requested multiple times, how does the server handle these requests if the initial request has not completed it's transaction?
😕
Each HTTP request will cause the web server to spawn a separate instance of that PHP script, so it is possible that multiple instances could be running concurrently if the time between requests is less than the time it takes for the script to run.