Concept Flow - PHP process model per request
Client sends HTTP request
Web server receives request
Web server starts PHP process
PHP process initializes environment
PHP executes script from start to end
PHP sends output to web server
Web server sends response to client
PHP process ends and cleans up
Each HTTP request starts a new PHP process that runs the script fully, then ends, sending output back to the client.