I have this code and it get something weird just after the title they are ()()()(). I been looking for this and I still don't have idea how to fix it. Thank you in advance.
<html>
<head>
<title>VER PRECIOS DE DESTINOS</title>
<style>
table,th,td
{
font-family: Tahoma;
border:1px solid black;
border-collapse:collapse;
}
th,td
{
padding:5px;
}
th
{
text-align:left;
}
</style>
</head>
<body>
<span style="font-family: Tahoma; font-size: 45.0px; font-weight: bold; ">
VER PRECIOS DE DESTINOS
</span>
<table style="width:300px">
<tr>
<th>DESTINO</span</th>
<th>PRECIO</th>
</tr>
<tr><?php
mysql_connect("localhost", "user", "password") or die(mysql_error());
mysql_select_db("Destinos") or die(mysql_error());
$order = "SELECT * FROM Destinos ORDER BY Destino";
$result = mysql_query($order);
while($data = mysql_fetch_row($result)){
print "(<tr><td>$data[0]</td>)";
print "(<td>$$data[1]</td>)";
}
?>
</table>
</tr>
</body>
</html>