error reporting was defaulted at E_ALL and all i get in return is blank page with my script
breakdown of script
open php <?
include_once("page.php")
- page contains
- 2 include_once calling to settings.php and scripts.php
- settings contains
- sql database info & general info that is regular calls for scripts
- scripts contains
- my menus
- misc scripts that appear on all pages
- also a call to header and footer (templated layout files)
doheader() function
PAGE CONTENT
dofooter() function
close php ?>
i have my template set up for ease of use, and really dont want to lose my template design. all menus are seperated into seperate files so i can edit a file for that perticular menu without worrying about disrupting the others, header and footer files are design for whole site, and changing that changes whole look.. no worry about changing 15 files to update the look of the site
i would like to be php5 compliant! please help