Displaying Members
Posted: Sun Nov 02, 2008 9:47 pm
Hey,
I have a script that displays members that have joined the site...
and for some reason it's displaying the member name in a huge font, but Id like it to display in 9pt and Im unsure how to make the font smaller, but here is my script - this is it for my script, can anyone help?
I have a script that displays members that have joined the site...
and for some reason it's displaying the member name in a huge font, but Id like it to display in 9pt and Im unsure how to make the font smaller, but here is my script - this is it for my script, can anyone help?
Code: Select all
<?
mysql_connect("***","****","***");//database connection
mysql_select_db("new");
$order = "SELECT * FROM users ORDER BY UID";
$result = mysql_query($order);
while($data = mysql_fetch_row($result)){
echo("<tr><td>$data[0]</td><td>$data[6]</td><td>$data[7]</td><td>$data[1]</td></tr>");
}
?>