I am trying to add <div class="TitleReg"> from my styles.css file to the following code, and when I do, it does not execute... What am I doing wrong...
<works>
// echo the results on screen
echo "<TR>";
echo "<TD><CENTER>$fname $lname </font></CENTER></TD>";
echo "<TD><CENTER><a href=\"mailto:".$email."\">".$email."</a></CENTER></TD>";
echo "</TR>";
<doesn't works>
// echo the results on screen
echo "<TR>";
echo "<TD><CENTER><div class="TitleReg">$fname $lname </font></CENTER></TD>";
echo "<TD><div class="TitleReg"><CENTER><a href=\"mailto:".$email."\">".$email."</a></CENTER></TD>";
echo "</TR>";
Any help would be appreacieted.