If you're doing extensive formatting of output from a database, then
you can't ask for all of a type of entry ("SELECT * FROM mainContent")
and print it to the screen. On the one hand, it is an annoying thing
to do to one's users, and on the other hand, the problem I've run
into, with only a few hundred records you start to run into PHP's
default 30 second time out.
Besides paging, what are some of the strategies people are using to
get large amounts of data from the database and to the screen?
you can't ask for all of a type of entry ("SELECT * FROM mainContent")
and print it to the screen. On the one hand, it is an annoying thing
to do to one's users, and on the other hand, the problem I've run
into, with only a few hundred records you start to run into PHP's
default 30 second time out.
Besides paging, what are some of the strategies people are using to
get large amounts of data from the database and to the screen?
Comment