Sascha Üreten: Include befehl erzeugt neue Zeile unter dem include

Hi
Ich hab oben in m eine Site (http://mangasource.de/php/index.php) eine Bannerrotation includet, sie funktioniert auch prima bis auf das sie eine neue Zeile durch das include erzeugt wird. Ich vermute das es am includen liegt da ich auch schon andere bannerrotaions dort included hab und der selbe fehler kommt dabei heraus.

Der Code wo ich included hab:

<TABLE WIDTH=800 BORDER=0 CELLPADDING=0 CELLSPACING=0>
 <TR>
      <TD WIDTH=800 HEIGHT=17 COLSPAN=11><img src="Bilder/index_01.jpg" width="800" height="17"></TD>
 </TR>
 <TR>
<TD WIDTH=241 HEIGHT=191 COLSPAN=3 ROWSPAN=5 background="Bilder/index_02.jpg"></TD>
      <TD WIDTH=468 HEIGHT=60 COLSPAN=6><?php include"banner.php" ?></TD>
      <TD WIDTH=91 HEIGHT=121 COLSPAN=2 ROWSPAN=4 background="Bilder/index_04.jpg"></TD>
 </TR>
usw.

Der code der rotation:

<?php

$code[1] = "<a href='http://james.adbutler.de/click.php?pid=5242&tid=79091&bid=18826' target='_blank'><img src='http://james.adbutler.de/view.php?pid=5242&bid=18826&tid=79091&b=468&h=60&inv=img' width='468' height='60' border='0'></a>";
$code[2] = "<a href='http://james.adbutler.de/click.php?pid=4706&tid=79091&bid=16395' target='_blank'><img src='http://james.adbutler.de/view.php?pid=4706&bid=16395&tid=79091&b=468&h=60&inv=img' width='468' height='60' border='0'></a>";
$code[3] = "<a href='http://james.adbutler.de/click.php?pid=5171&tid=79091&bid=19222' target='_blank'><img src='http://james.adbutler.de/view.php?pid=5171&bid=19222&tid=79091&b=468&h=60&inv=img' width='468' height='60' border='0'></a>";

$i = rand(1, count($code));
floor($i);

echo $code[$i];

?>

Ich hoffe jeman dvon euch kann mir helfen.

cu suzhi