Alright i try to use css where I can for these outputs, but in this case I am having brain troubles thinking of how a style will work, so I was after trying to insert some standard html code to put into this string:
echo "<b>Monday</b><br> " .$row['monday'].$row['mprice']."<br><br>" $row['mdesc']. ;
[\php]
The above is the current code (not that it works)
The goal is for the output to resemble:
Monday <----bold
foo (mdesc) ~ price (mprice)<----bold + itallics
description (mdesc2)<----bold
I have a string like:
[code=php]
echo "<b>Tuesday</b><br> ".$row['tuesday']."<br><br>" ;
That works fine. I fail to see the difference in why that works and
echo "<b>Monday</b><br> " .$row['monday'].$row['mprice']."<br><br>" $row['mdesc']. ;
[\php]
returns Parse error: parse error, expecting `','' or `';''
Obviosly the board also hates my code as it wont highlight it properly.
;(