Can you include and include file in an include file?
hehe, I know thats kinda wordy, so I'll explain it differently.
Here's an overview of what I'm trying to do.
Big File 1
if (condition==1) {
include (this)
}
if (condition) {
include (that)
}
if (condition==3) {
include (something)
}
(Obviously thats not workable code)
The different includes will define how the pagae will look, but I want certain parts of the page to be the same (the menus in this case) to be consistent and easy to update. So I want to include the menu file into each of the includes mentioned above.
Is that possible?