3 way PHP conditional for Body ID
Posted: Mon Feb 07, 2011 12:40 am
Hi,
I've written a conditional statement to give my body tag a unique ID, depending on three conditions. (body id="red" etc..)
The statement does indeed work when tested, but dreamweaver is highlighting the conditional in yellow - So I'm wondering if there is an alternate (and perhaps cleaner) way of writing the following..
It's for a joomla site btw..
(I've spread the code out a little here, so it's easier for you guys to see what I'm doing)
I've written a conditional statement to give my body tag a unique ID, depending on three conditions. (body id="red" etc..)
The statement does indeed work when tested, but dreamweaver is highlighting the conditional in yellow - So I'm wondering if there is an alternate (and perhaps cleaner) way of writing the following..
It's for a joomla site btw..
(I've spread the code out a little here, so it's easier for you guys to see what I'm doing)
Code: Select all
<body
<?php if($this->countModules('headerlow')) : ?>
id="up"
<?php endif; ?>
<?php if (JRequest::getVar('Itemid')==104) { ?>
id="red"
<? } else {?>
id="low"
<? } ?>
>