Hey, I have some pages with over 5k lines of code and I am worried this is lowing down the pages and using up server resources.
if (!$pet) {
} else {
THEN ABOUT 400 lines of code here
}
Would this be processed faster if I just did an include("info.php"); and stuck that 400 lines in the info.php?
I am just looking for the fastest solution. This is just a small example, but I never use includes except for header and footer. So if this makes it faster, my sites performance will improve vastly.
-Dusk