hi, quick question, why can't i use css classes in an echo or print function?
for example:
echo ("<center>");
echo ("<b>updated on $date</b><br><br>");
echo ("$entry<br><br>");
echo ("</center>");
prints the appropriated variables centered, bolded, etc.
but when i try
echo ("<center>");
echo ("<b class="entryhead">updated on $date</b><br><br>");
echo ("$entry<br><br>");
echo ("</center>");
it returns a t_string error on that line. why can't i use css classes in my php code, is there a way to apply classes like that via php? if so how do i use them?