Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8544727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T12:37:49+00:00 2026-06-11T12:37:49+00:00

When i build a set of elements (say 100) with php (in a loop)

  • 0

When i build a set of elements (say 100) with php (in a loop)
Is the page send to the client only when the loop is completed or is the page on client side already showing on the client before the loop is completed? Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T12:37:51+00:00Added an answer on June 11, 2026 at 12:37 pm

    You can control output to client browser anytime in your PHP code

    Example Send to Client Instantly

    for($i = 0; $i < 100; $i ++) {
        echo $i, " - sent ";
        sleep(1);
        flush(); // Send to client Instantly 
    }
    

    Example Send after Loop

    ob_start();
    for($i = 0; $i < 100; $i ++) {
        echo $i, " - sent ";
        sleep(1);
    }
    ob_end_flush() // Send after loop
    

    Example 3 ( This would just use your default output buffer configuration )

    for($i = 0; $i < 100; $i ++) {
        echo $i, " - sent ";
        sleep(1);
    }
    

    Finally (Credit : Ninsuo)

    Some browsers does not display anything until the page is fully loaded so we don’t always control flushing

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to quickly build out a set of elements in jQuery?
I'm using the composite pattern to have reusable elements to build a page. for
I'm attempting to build a set of HTML elements from a JSON object. I've
I'm trying to build a history list of clicked clicked page elements and store
I am trying to build set of reusable components for the ASP.Net MVC3 application.
I have a big Maven multi-module build set up in my Jenkins. It is
I am trying to get a build process set up in TeamCity 5, and
I am having the following problem: a) I have a UNIX build environment set
I'm producing builds using MSBuild, and build configurations set up in the dproj on
My build target is set for IOS5 which is where I understand UIButton.tintColor was

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.