Hi
I was wondering if anyone can help. I have integrated a blog into a website using some code from another webste. Everything works but I do not know how to change the font type and colour for the text when it is on the website. The code is:
<?php
include "common.php";
$sql = "select * from blog order by added desc";
$link = mysql_query($sql,$cn);
while($data = mysql_fetch_row($link))
{
//print_r($data);
echo "<hr class=\"c\"><h5>";
$tdate=strtotime($data[0]);
if($data[0]!='')
echo date('m-d-y | h:i a',$tdate);
echo "</h5>
<h4 class=\"gold\">
$data[1]
</h4><br>
$data[2]
<p><div id=\"grey\">
$data[3]
</div>";
}
?>
If you need any more code please let me know.
Many thanks in advance for your help.
AC
MOD EDIT: PHP bbcode tags added, please use these in the future.