Codeigniter view show progress
问题 I am using Codeigniter and want to show progress of XML import. but issue i am facing is When view load, it stuck on loading (blank page) and when i can see view its shows 100% done. my code as bellow $i=0; $count=sizeof($record->List); foreach($record->List as $Item) { $i++; echo "processing ".$i." of ".$count; ---processing code which takes times to process--- ---processing code which takes times to process--- } this code is in view but when i click on link to load this view, i have to wait