uhm kan det måske have noget med sagen at gøre? Her kommer hele koden så =) :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><?php
// This page will list all of the items
// from the items table. Each item will have
// a link to add it to the cart
include("db.php");
// Get a connection to the database
$cxn = @ConnectToDb($dbServer, $dbUser, $dbPass, $dbName);
?>
<?php
$result = mysql_query("SELECT * FROM indhold order by id asc")or die(mysql_error());
//$link = mysql_fetch_array($result);
?>
<html>
<head>
<title>Salsa Akademiet</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/salsa.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
<table width="800" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="288" align="center" valign="top" bordercolor="#333333" bgcolor="#FFFAE4"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="6"><?php include("menu.php"); ?></td>
</tr>
<tr align="center">
<td colspan="6"><img src="gfx/prik.jpg" width="100%" height="2"></td>
</tr>
<tr align="center">
<td colspan="6"> </td>
</tr>
<tr>
<td width="30%" rowspan="5" align="right" valign="top"><?php include ("randompic.php"); ?></td>
<td rowspan="5" class="emptyspaceleft"> </td>
<td width="47%" align="center" valign="middle" class="bordertop">Velkommen til Salsa Akademiet</td>
<td rowspan="5" class="emptyspaceleft"> </td>
<td width="17%" align="center" valign="middle" class="bordertop">Drop-in Salsa</td>
<td rowspan="5" align="center" valign="top" class="emptyspaceleft"> </td>
</tr>
<tr>
<td width="47%" rowspan="4" align="right" valign="top" class="borderbottom"><table width="94%" height="570" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top"><div id="header" style="width: 355px; height: 570px; overflow: auto">
<p><br>
<?php
while($row = mysql_fetch_array($result))
{
?>
<strong><?php echo nl2br($row["overskrift"]); ?></strong><br>
<br>
<?php echo nl2br($row["indhold"]); ?><br>
<br>
<img src="gfx/prik.jpg" width="325" height="1"><br>
<br>
<?php
};
?>
<br>
<br>
Venlig hilsen<br>
Søren Henriksen
</p>
</div></td>
</tr>
</table> </td>
<td height="303" align="right" valign="top" class="borderbottom"><table width="92%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><br>
<strong>Onsdag:</strong><br>
New York style on 2 <br>
19-20 intro<br>
20-21 let øvede<br>
21-01 salsatek
<p><strong>Fredag:</strong><br>
Rueda de Casino - Cubansk <br>
19-20 intro<br>
20-21 let øvede<br>
21-22 øvede<br>
22-02 salsatek </p>
<p><strong>Lørdag:</strong><br>
New York style on 2<br>
19-20 intro<br>
20-21 let øvede<br>
21-22 øvede <br>
22-02 salsatek </p>
<p>(Der er ingen drop-in skole 1. lørdag hver måned)</p></td>
</tr>
</table> <p> </p></td>
</tr>
<tr>
<td align="center" valign="top"><img src="gfx/blank.gif" width="15" height="15"></td>
</tr>
<tr>
<td align="center" valign="middle" class="bordertop">Holdundervisning</td>
</tr>
<tr>
<td height="207" align="right" valign="top" class="borderbottom"> <table width="92%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="top"><p><br>
Her kan du tilmelde dig til de kommende hold der bl.a. kommer ind på følgende stilarter:<br>
<br>
- Rueda Cubansk <br>
- New York style
</p>
<p><a href="stilarter.php" target="_blank" onClick="MM_openBrWindow('stilarter.php','stilarter','status=yes,scrollbars=yes,width=550,height=645');return false">Læs om stilarter >></a> </p>
<p><a href="tilmelding.php">Tilmeld dig her >></a></p></td>
</tr>
</table> </td>
</tr>
<tr>
<td height="50" colspan="6"> </td>
</tr>
<tr align="center">
<td colspan="6"><img src="gfx/prik.jpg" width="100%" height="2"></td>
</tr>
<tr align="center">
<td height="25" colspan="6"><span class="tekst">
<?php include("bundinfo.php"); ?></span></td>
</tr>
</table> </td>
</tr>
</table>
</body>
</html>