try:
print "<font face=\"verdana\" size=\"1\">" .$row["message"] . "</font>\n";
Derek wrote:
small question which will save me from the trouble of making stylesheets.
what syntax can i use to change the 'message' output font to verdana and the size to lets say 1 ?
<?php include("dbconnect.php"); ?>
<?php
$result = mysql_query("select * from message_board");
if ($result)
{
while ($row = mysql_fetch_array($result))
{
print $row["message"];
}
mysql_free_result($result);
}
else {print "could not obtain results";}
?>