Conditional php include not working in ie6
-
Hello. Would be glad if someone could help me out on the following.
I use a conditional php include to get certain footers for certain sites:
<?php if (is_page('kontakt')) { include (TEMPLATEPATH . '/footerkontakt.php'); } elseif (is_page('produkte')) { include (TEMPLATEPATH . '/footerprodukte.php'); } elseif (is_page('Special Offer')) { include (TEMPLATEPATH . '/footeroffer.php'); } elseif (is_page('Tipps & Trends')) { include (TEMPLATEPATH . '/footertipps.php'); } elseif (is_page('Philosophie')) { include (TEMPLATEPATH . '/footerphilosophie.php'); } else{ get_footer(); } ?>It’s working fine in all browsers except ie6. Why might that be???
Cheers!!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Conditional php include not working in ie6’ is closed to new replies.