hi
when writing a php page that generates html , some times a lot of html,
I was wondering what is more efficient:
to print the whole html at once or by parts.
for example: if I have a big table, should I append to it the trs and tds
and then print it , or print each tr alone.
there might be a question of timing out when appending and sending big string.
also , what is more efficient from experience, print or echo ?
thanks
Guy