Search Results

11
votes
12answers
1k views

Why is require_once so bad to use?

Everything I read about better php coding practices keeps saying don't use require_once because of speed. Why is this? What is the proper/better way to do the same thing as require_ …
2
votes
2answers
84 views

what is worse for speed when loading CSS, a second LINK element or @import?

need to add a 2nd css stylesheet to a page. do i add a 2nd link line and load it by url, or add a @import to the original? what is worse for page load times? what is worse for serve …