Hi again,
I have another question that I would like to ask. This time it's about classes. Now, I know how great OOP is and all but I tend to have a class for statistical logging, user functions, authenticating users, error logging, page templating, database methods, page caching, and I'm sure I can come up with a much longer list. The problem I'm encountering is that I need almost all these classes on nearly every page. So when a page is called up, it loads most of the classes and whatever else I've included before running them and finally displaying the page. This makes loading time really slow. How would I improve page loading? Are there some classes that I should get rid of? Maybe I'm not designing my classes correctly? All of the above? I'd appreciate the help. Thanks!