Hello all🙂
I have an external php stylesheet that is included in all my pages like this....
<link rel="stylesheet" type="text/css" href="style.php">
In the stylesheet the below is supposed to set the background color but the expression always evaluates false and I can't figure out why????
body { background: <?php echo ($bkColor)?"$bkColor":"#003399"; ?> ; color:white; font-size:12pt; font-weight: bold
I'm using session variables to set $bkColor and when I print $bkColor to screen it always shows the right value.