I have a php script that uses cURL and takes about 10-15 minutes to execute. What it does, it parses about 1000 pages looking for specific matches and throughout the script I ha
Use flush to immediately send output to the browser, by flushing the output buffer.
echo "foo"; flush(); echo "bar"; flush();