Hello Everyone....
I am building a web application using PHP. The
interface scheme is pretty simple....
Every PHP file includes (using
'include('filename.php');.....
header.php - kicks off the session, checks if the user
is logged in, sets menu options and creates HTML for
user interface.
classes_php.inc - includes of classes developed for
use in application
db_inc.php - includes db information (i.e. username)
FILENAME.php - this is the content of the specific
page being used
footer.html - HTML footer for bottom of the page
Now, I made a mass edit to all of my files to include
a new 'header.php' file. I checked the permissions
and they are fine. NO ERRORS generating.The problem is.....
Whenever I pull up a page, the only HTML generated
comes from 'header.php'. Nothing from footer.html
or the page itself (the includes for classes and db would never
appear....all php).
I am at a loss here....why would only the header
generate? I cannot think of any changes I made, but
certainly no system-wide changes....all other pages
are serving fine. the only change made was to
'header.php'.....essentially, every single page only generates 'header.php'......now nothing works!
Can somebody give me an idea of what is going on?
Thanks in advance.....