Forum Moderators: coopster
What would be the most server efficient way of calling back this data? From a saved html page? Or from the whole page data saved in a MySQL field?
I'm guessing the MySQL way would be the way to go?
Thanks
Chris
assuming you will be getting a reasonable slice of traffic - generating physical .html files once for each will be vastly more server load efficient.
apache just has to serve the .html file complete - no involvement of php or mySQL etc. nothing is more server efficient than that.
the only server load will be in the writing the original page, should you do that with php/mySQL.