lille fejl i tabller
jeg kan simplehen ikke få den sidst table op til de andre og ligeså langt ud til siden som de andrehttp://grise-bassen.crump.dk/brugere/profil.php?id=3
koden:
<?
session_start();
$side = "..";
require "$side/includes/conf.php";
require "$side/includes/top.php";
$hent_bruger = mysql_query("SELECT * FROM mitho_brugere where id = '$_GET[id]'") or die(mysql_error());
while($vis_brugerinfo = mysql_fetch_array($hent_bruger)){
echo"<table width='90%' align='center' class='side-body'>";
echo"<tr>";
echo"<td width='65%'>";
echo"<table width='100%' class='side-body'>";
echo"<tr>";
echo"<td width='30%' bgcolor='#999999'>Brugernavn</td><td width='70%' bgcolor='#999999'>$vis_brugerinfo[brugernavn]</td>";
echo"</tr>";
echo"<tr>";
echo"<td width='30%' bgcolor='#999999'>Fornavn</td><td width='70%' bgcolor='#999999'>$vis_brugerinfo[fornavn]</td>";
echo"</tr>";
echo"<tr>";
echo"<td width='30%' bgcolor='#999999'>Efternavn</td><td width='70%' bgcolor='#999999'>$vis_brugerinfo[eftenavn]</td>";
echo"</tr>";
echo"<tr>";
echo"<td width='30%' bgcolor='#999999'>E-mail</td><td width='70%' bgcolor='#999999'>$vis_brugerinfo[email]</td>";
echo"</tr>";
echo"</table>";
echo"</td>";
echo"<td width='35%'>";
echo"<table width='100%' class='side-body'>";
echo"<tr>";
echo"<td width='100%'>billede</td>";
echo"</tr>";
echo"</table>";
echo"</td>";
echo"</tr>";
echo"<tr>";
echo"<td colspan='2' rowspan='0'>";
echo"<table width='100%' class='side-body'>";
echo"<tr>";
echo"<td width='50%'>";
echo"<table width='100%' class='side-body'>";
echo"<tr>";
echo"<td width='38%' align='left' bgcolor='#999999'>Website</td><td width='62%' bgcolor='#999999'>$vis_brugerinfo[webside]</td>";
echo"</tr>";
echo"</table>";
echo"</td>";
echo"<td width='50%'>";
echo"<table width='100%' align='center' class='side-body'>";
echo"<tr>";
echo"<td width='38%' align='left' bgcolor='#999999'>Website</td><td width='62%' bgcolor='#999999'>$vis_brugerinfo[webside]</td>";
echo"</tr>";
echo"</table>";
echo"</td>";
echo"</tr>";
echo"</table>";
echo"</td>";
echo"</tr>";
echo"</table>";
}
require "$side/includes/bund.php";
?>