Hi,
This is probably really simple to most of you but I have a PHP based website that I want to change the font (of the outputted HTML) and I'm really struggling! Here is a snippet of my code:
The font is changing to arial but I really can't get the font size to change. Can anyone help??
Thanks in advance.
Martin
This is probably really simple to most of you but I have a PHP based website that I want to change the font (of the outputted HTML) and I'm really struggling! Here is a snippet of my code:
Code:
echo "<font face='arial' size='1'>";
echo "
<TABLE BORDER=1>
<TR>
<TH>Call Reference Number</TH>
<TH>Techncian</TH>
<TH>User</TH>
<TH>Call Description</TH>
<TH>Call Category</TH>
<TH>Call Priority</TH>
<TH>Call Resolution</TH>
<TH>Time Taken in hours</TH>
<TH>Time Taken in minutes</TH>
<TH>Date Logged</TH>
</TR>
</font>";
// Enter results in table
while ($row=mysql_fetch_array($sql_result)) {
$call_id=$row["Call_ID"];
$user=$row["User"];
$user_logged=$row["User_logged"];
$call_desc=$row["Call_Desc"];
$category=$row["Category"];
$priority=$row["Priority"];
$resolution=$row["Resolution"];
$time_hrs=stripslashes($row["Time_Hrs"]);
$time_mins=$row["Time_Mins"];
$date_logged=$row["Date_Logged"];
echo "<font face='arial' size='1'>
<TR>
<TD><INPUT type=\"text\" readonly=\"readonly\" name =\"call_id\" value=\"$call_id\"></TD>
<TD>$user</TD>
<TD>$user_logged</TD>
<TD>$call_desc</TD>
<TD>$category</TD>
<TD>$priority</TD>
<TD>$resolution</TD>
<TD>$time_hrs</TD>
<TD>$time_mins</TD>
<TD>$date_logged</TD>
<TD>
<p align=center><INPUT type=\"submit\" value=\"Delete Call\"></p>
</TD>
</TR>
</font>";
Thanks in advance.
Martin
Comment