Warning: Cannot add header information - headers already sent by (output started at /home/www/web280/html/start.php:

in /home/www/web280/html/tut.php on line 18
Diese fehlermeldung bekomme ich - hier der code:
<?php
include("config.inc.klick.php");
// Verbindung zum MySQL-Server aufbauen
$db = @mysql_connect($host, $user, $pass);
if ($db) {
if (@mysql_select_db($datab, $db)) {
// Eintrag fuer die per GET uebergebene URL um 1 erhoehen.
$query = "UPDATE $table SET count = count + 1 WHERE url = '$url'";
$result = @mysql_query($query);
}
}
// Auf uebergebene URL weiterleiten
Header("Location: ".$url);
?>
<table width="356" cellpadding="0" cellspacing="0">
<tr>
<td width="356" height="10"><img src="../images/pfeil.gif" border="0"> <b>tutorials allgemein</b><br><br></td>
</tr>
<tr>
<td class="blocksatz" width="356">test</td>
</tr>
<tr>
<td width="356"><a href="count.php?url=http://www.elpeon.com/tut.php" onfocus="this.blur()">Linktest</a></td>
</tr>
</table>
db habe ich angelegt.
Was soll ich nun machen? Wo liegt der fehler?