Forum Moderators: coopster
Thanks
I was wondering if anyone has the opinion what is the best way to optimize page load time in the following scenario (maybe this is trivial however I am new to PHP…):
-(page is being created using PHP)
-some (user) data has been collected and I want to store it to db
-page content should be loaded and displayed to the user
Often times the next display is dependent upon a successful/unsuccessful operation.
I agree that this is true n most cases. But what if data that has been collected, and that needs to be written is, for example, is used only by me for statistical purposes. Or maybe in more general terms, data that has been collected will not be used for anything displayed to the user on the next page. In that case, I don’t want to delay page being displayed to the user due to writing to db. Is this possible using PHP?