Hi all,
todays problem is that Im trying to insert a colour value (#669966) into a function. problem is the colour mysteriously changes once its within the function, even though looking at the source code iits the correct color value.
calling the function
<?
aheader('#669966');
?>
the relevant parts of the function:
<?
function aheader($bcol) {
?>
<table width="100%" height="437" border="0" cellpadding="0" cellspacing="0" bgcolor="
<?
echo $bcol;
?>
">
any ideas what is going wrong and how to do it right??
thanks
L.