hey all ive got a mysql database which i use the following code to display the results on a website
<?php
$con = mysql_connect("--","--","--");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("--", $con);
$result = mysql_query("SELECT * FROM events");
echo "<table border='0'>
<tr>
<th>Date</th>
<th>Location</th>
<th>Details</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['date'] . "</td>";
echo "<td>" . $row['location'] . "</td>";
echo "<td>" . $row['details'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
but the owner of the site wants a bigger space between results than there is atm as it is just the default table gap. ive tried the usual <br/> and stuff like that but nothing seems to be doing the trick im sure its probably something stupid that im missing but any ideas???
thanks alot
-Tom