please help me to resolve the problem. Imagin I run this script:
- Code: Select all
<?php
if (@$_REQUEST['q'] == 1) {
echo microtime(true);
sleep(1);
exit;
}
?>
<iframe src="?q=1"></iframe>
<iframe src="?q=1"></iframe>
<iframe src="?q=1"></iframe>
<iframe src="?q=1"></iframe>
And I see that iframes are loaded each after another with a delay in 1 second, i.e. the last iframe shows its result in 4 seconds. But I would prefer that requests of the iframes were procecced simultaneously. Is it possible?

