Table Koordinaten angeben..... WO?

  • Hallo,

    ich habe in mein Gästebuch noch das Template von meiner website einbaut doch die Beiträge lassen sich nicht positionieren und fangen schon unter mein Template an !!!
    (d.h die letzten 3geschriebene Beiträge kann man nicht sehen)


    Habe schon unten vielen anderen Sachen das versucht:
    <table width="950" cellpadding="0" cellspacing="0" <?PHP echo "bgcolor=\"$table_back\" style=\"position:absolute;left:149px;top:655px;width:850px;height:497px;z-index:6\""; ?>>

    Aber das ignoriert er, hab es schon überall eingebaut, kann aber höchstens den ersten je gesch. Beitrag positionieren, die anderen Beiträge sind dann weg!


    WO MUSS ICH DAS EINGEBEN?
    oder
    WAS MUSS ICH EINEGEBEN?

    // Anzeige der Beiträge
    $abfrage = "SELECT * from Gaestebuch ORDER BY ID DESC LIMIT $start, $proseite";
    $ergebnis = mysql_query($abfrage);

    while($row=mysql_fetch_array($ergebnis))
    {
    $id=$row['id'];
    $name=$row['name'];
    $homepage=$row['homepage'];
    $eintrag=$row['eintrag'];
    $kommentar=$row['kommentar'];
    $vote=$row['vote'];
    $mail=$row['mail'];
    $ip=$row['ip'];
    $time=$row['time'];
    $datum = date("d.m.Y",$time);
    $uhrzeit = date("H:i",$time);
    if ($vote=="5") $vote="Maria";
    if ($vote=="4") $vote="Laura";
    if ($vote=="3") $vote="Jessica";
    if ($vote=="2") $vote="Sonja";
    if ($vote=="1") $vote="Linda";
    ?>
    <table width="550" cellpadding="0" cellspacing="0" <?PHP echo "bgcolor=\"$table_back\" style=\"border:solid $rahmen 1px;height:1px;\""; ?>>
    <tr>
    <td bgcolor="<?PHP echo $table_kopf; ?>">
    <table width="100%" border="0" cellspacing="0" cellpadding="1">
    <tr>
    <td width="34%" align="left"><?PHP echo "<font size=\"2\" color=\"$text_kopf\">$name</font>"; ?></td>
    <td width="33%" align="center"><?PHP if ($homepage<>"" AND $homepage<>"http://"){echo "<a href=\"$homepage\" target=\"_blank\" style=\"text-decoration:none\"><font size=\"2\" color=\"$text_kopf\">Homepage</font></a>";} ?></td>
    <td width="33%" align="right"><?PHP echo "<font size=\"2\" color=\"$text_kopf\">$datum - ".$uhrzeit."Uhr</font>"; ?></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top">
    <table width="100%" border="0" cellspacing="0" cellpadding="3">
    <tr>
    <td align="left">
    <?PHP
    echo"<font color=\"$text\">";
    echo nl2br($eintrag);
    echo"</font>";
    if($vote<>"0")
    {echo"

    <font size=\"2\" color=\"$text_komm\">$name hat die Seite mit $vote bewertet.</font>
    ";}
    if($kommentar<>"")
    {echo"<hr style=\"border:solid $rahmen 1px;height:1px;\">\n";
    echo"<font size=\"2\" color=\"$text_komm\">Kommentar:
    \n";
    echo nl2br($kommentar);
    echo"</font>\n";}
    ?>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>


    :shock: :lol: