Wo ist der Fehler im Code?

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Wo ist der Fehler im Code?

    Hallo,

    Kann mir bitte jemand kurz helfen?
    Finde den Fehler vor lauter Code nicht. Danke!

    PHP-Code:
    <?

    echo '<table width="100%" border="0" cellspacing="8" cellpadding="0">

        <tr>
            <table width="155" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td><img src="gfx/nav.gif" width=153 height=20 alt="" border="0"><br></td>
            </tr>

            <tr>
            <td bgcolor="#F2F2F2" style="border: solid 1px #B1B1B1">

                <table width="100%" border="0" cellspacing="6" cellpadding="0">
                <tr>
                <td>TOP 10 LINKS</td>
                </tr>
                </table>

            </td>
            </tr>
            </table>';

            
            <table width="155" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td><img src="gfx/umfrage.gif" width=153 height=20 alt="" border="0"><br></td>
            </tr>

            <tr>
            <td bgcolor="#F2F2F2" style="border: solid 1px #B1B1B1">

                <table width="100%" border="0" cellspacing="6" cellpadding="0">
                <tr>
                <td>PARTNER</td>
                </tr>
                </table>

            </td>
            </tr>
            </table>';


            <table width="155" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td><img src="gfx/ohne.gif" width=153 height=20 alt="" border="0"><br></td>
            </tr>

            <tr>
            <td bgcolor="#F2F2F2" style="border: solid 1px #B1B1B1">

                <table width="100%" border="0" cellspacing="6" cellpadding="0">
                <tr>
                <td>hier Zitatecode</td>
                </tr>
                </table>

            </td>
            </tr>
            </table>';


            <table width="155" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td><img src="gfx/letter.gif" width=153 height=20 alt="" border="0"><br></td>
            </tr>

            <tr>
            <td bgcolor="#F2F2F2" style="border: solid 1px #B1B1B1">

                <table width="100%" border="0" cellspacing="6" cellpadding="0">
                <tr>
                <td>hier Newslettercode</td>
                </tr>
                </table>

            </td>
            </tr>
            </table>';


            <table width="155" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td><img src="gfx/statistic.gif" width=153 height=20 alt="" border="0"><br></td>
            </tr>

            <tr>
            <td bgcolor="#F2F2F2" style="border: solid 1px #B1B1B1">

                <table width="100%" border="0" cellspacing="6" cellpadding="0">
                <tr>
                <td>hier Statistikcode</td>
                </tr>
                </table>

            </td>
            </tr>
            </table>';
        
        
        </tr>
        </table>';

    ?>

  • #2
    das überhängsel da:

    PHP-Code:
        </tr>
        </
    table>'; 
    EDIT:
    ach nee, jetzt seh ich das erst richtig: du hast die echos vergessen oder zu früh abgeschlossen...
    Zuletzt geändert von hall; 12.08.2006, 21:01.
    mfg

    Kommentar


    • #3
      Stimmt, hab den Fehler entdeckt.
      Hinter den Tables muss das '; weg.
      Ausser natürlich beim letzten...

      Danke!

      Kommentar

      Lädt...
      X