inner workings of PHP (really long PHP script)
Posted
by
econclicks
on Stack Overflow
See other posts from Stack Overflow
or by econclicks
Published on 2010-12-27T12:07:34Z
Indexed on
2010/12/27
13:54 UTC
Read the original article
Hit count: 124
I have a really long php script for just 1 page i.e. something like:
mywebsite.com/page.php?id=99999
I have about 10000-20000 cases of the id, each with a different settings. Will this slow down my website significantly?
i.e. my question is really along the lines of, what happens when php is executed. does the server execute it and display the results, or does the client's computer download it, execute it and display the results.
if its the latter, does it mean a really slow load time? each of the 10000-20000 cases has about 20-25 lines of code after it.
thanks, xoxo
© Stack Overflow or respective owner