littlepeg Posted May 17, 2007 Share Posted May 17, 2007 Hello everybody, here is my style sheet and I want the output comments have the same style, but I dont know how to achieve this. Would you please give me some advice. Any help will be appreciated. <!-- .STYLE1 { font-size: 12px; font-family: "Times New Roman", Times, serif; font-weight: bold; color: #666666; } $dbRecords=mysql_query("SELECT comment FROM telcategory WHERE id='1'", $dbLocalhost) or die("Problem reading table:" .mysql_error()); while ($arrRecords=mysql_fetch_array($dbRecords)){ echo "<p>" .$arrRecords["comment"]. "</p>"; } Link to comment https://forums.phpfreaks.com/topic/51885-solved-please-help-me-with-this-php-output-style-problem/ Share on other sites More sharing options...
chigley Posted May 17, 2007 Share Posted May 17, 2007 <?php echo "<style type=\"text/css\"> .comment { font-size: 12px; font-family: \"Times New Roman\", Times, serif; font-weight: bold; color: #666666; } </style>"; $dbRecords=mysql_query("SELECT comment FROM telcategory WHERE id='1'", $dbLocalhost) or die("Problem reading table:" .mysql_error()); while ($arrRecords=mysql_fetch_array($dbRecords)){ echo "<p class=\"comment\">" .$arrRecords["comment"]. "</p>"; } ?> Try that Link to comment https://forums.phpfreaks.com/topic/51885-solved-please-help-me-with-this-php-output-style-problem/#findComment-255755 Share on other sites More sharing options...
littlepeg Posted May 17, 2007 Author Share Posted May 17, 2007 Yes!!It works good. Thank you very much. :) Link to comment https://forums.phpfreaks.com/topic/51885-solved-please-help-me-with-this-php-output-style-problem/#findComment-255763 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.