Jump to content

[SOLVED] please help me with this php output style problem


littlepeg

Recommended Posts

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>";

}

 

<?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 :)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.