Jump to content

Script Output times out


Larry101

Recommended Posts

Hi - I have a script that does lots of work in loops in loop using a database. I have coded lots of echo's to out put as it goes, problem is.. it doesn't output until the very end of the task - whgick is OK on a short run, but when it processes a really long loop it just doesnt out put anything and gets stuck. I have tried ob_start and ob_flush but it didnt make any difference. Any ideas on how to make a long script process output as it goes?

Link to comment
https://forums.phpfreaks.com/topic/241797-script-output-times-out/
Share on other sites

I have striped the code to this... basically the on a long run the echos dont output and the browser gets stuck.

 

<?

    $sql = "select * from table where processed_state = \"Pending\" limit 1000 ";   
    $qry = mysql_query($sql, $conn) or die ("FAILED: "  .mysql_error());

    while($rows = mysql_fetch_assoc($qry)){ // loop through Pending data  - OUTTA LOOP *************************************************************

    echo " OUTPUT DATA HERE";


                            for ($i=1; $i<=500; $i++){ // INNER LOOP ------------------------
                                     //more code
                                     echo " OUTPUT DATA HERE"; 
                                    //more code
                                     //more code
                                     //more code
                                     echo " OUTPUT DATA HERE"; 
                                   }  // for    - INNER LOOP ------------------------------------


                              //more code

                            //more code

                                echo " OUTPUT DATA HERE";
                                //more code

    }// while   - OUTTA LOOP ***********************************************************************************************************************
     echo " OUTPUT DATA HERE"; 


?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.