Quote:
|
I believe it would load a lot faster if done in static html, then do the other pages in php. (correct if wrong) also, the main page would be cached by the browser for the most part and be very fast.
|
can I ask what is stopping you from trying and seeing the results? make a benchmark, reuse or sell?
to answer your ?:
basically a static HTML page will load faster than a dynamically server generated page. Why?
the webserver just serves static page.
the dynamically server generated page need to go through webserver to app to DB (maybe?) to, more apps, etc. This takes time and resources.
a static HTML page can load slower than a dynamically server generated page. Why?
the static page is large, or large enough that the above described webserver/app/db interaction is faster...