Hi Users
My Problem
I generate a very big list of about 1000 Datasets. And I will bring the output on one internet page. The problem is, that the browser show the datasets when it get all from the server. I want that the browser display the data when he get already the first.
e.g.
I write
echo "first dataset";
echo "second dataset";
and so on
I want to see the output already, when he worked on the the first line.
echo "first dataset";
-->now the Browser should show it
echo "second dataset";
-->now the Browser should show it
has anybody an idea?
John