Follow these instruction to increase speed of your web site.
- Don't use "select * from tablename" always specify column names to be retrieved
- Use minimum graphics like images, flash etc. and if used, compress them before using.
- Always implement indexes on table column on which search is made. i.e column which is included in where clause.
- Use "Joins" insted of using two or three queries.