Forum Moderators: coopster
1. you are doing alot of queries of the database on all of these single pages
2. you have all your information stored in one large table in the database.
there are also the general reasons of large image sizes etc..
do any of these apply?
Things to look for
- are there unnecessary JOINs
- am I selecting * when I am only using a few columns on the page
- am I selecting more records than I am going to display on this page
- am I selecting data that could be carried around another way to cut out 1 query per page
these are just a few things
look at your loops for processing what is returned from your db as well for unnecessary iterations