Firstly, make sure that your code is using include_once() instead of a standard include() or require(). If the file is included recursively, it could be getting called multiple time which can cause issue.
However, remember that PHP is not sent to the client browser -- just parsed and rendered HTML. I believe it's simply making the code in those libraries available to the PHP Engine in case functions are called from that file.
So, if you right click on a rendered webpage and view properties, you'll see the size will probably be significantly under that 200k size. 😉
shawjames wrote:Hello,
I have an include on a page that loads all the time. The size is over 200K.
does this include get loaded each time the page loads? How does this work? If everytime, then this would be why my bandwidth usage is so high!!
Just curious how it works with bandwidth and load times.