I coded that script in php:
foreach($hey[1] as $key => $val){
$data2 = get_page_code($val);
preg_match($patternredirect, $data2 ,$url);
echo $url[1];
}
The code is not actually relevant, the issue is when I run it the page doesn't show anything until the page is fully loaded. In my previous host the echo
used to be shown while the code was being executed. Is it a way to change it and show things once got them and not to wait until every $url[1]
is got? Thanks :)