Hi everyone:
Consider the following hypothetical:
You have one PHP page that is 25KB in size.
This page contains 10 separate functions.
At any one time that a user hits the page from her browser,
only one of the functions is used. Let's say that that
function, by itself, is about 3KB in size.
When the user hits the page with her browser, does the entire 25KB get sent down the pipe? Or does only the 3KB of the function in use get sent?
Did that even make any sense? I'm not sure if I'm asking the question in the right way.
Essentially, I'm wondering if you have one large PHP file that is split up into specific functions, does that whole file get sent to a browser everytime or only the functions in use at any given time?
Thanks in advance,
--tovince