Are files that are imported via include, include_once, require, and require_once cached by default on the client and/or server side? Or does the wev server reload them everytime the file is requested.
Thanks
it's server side, included by php into the script code before processing.
ah ok I didn't think that one part through. all php is done server side.
Does php cache the page though once it has loaded it so that every other request for it is loaded faster since it is cached?
PHP doesn't, as far as I can tell, but the server's filesystem certainly will.