basti1012.bplaced.net

Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
    Hallo zusammen, stehe momentan etwas auf dem Schlauch, ich habe über folgendes Script eine 1 * 1 - Tabelle erzeugt. Nun möchte ich die jeweiligen Zeilen noch mit einer Überschrift versehen und bin mir unschlüssig, wo ich das bestenfalls platziere. Ich denke dass aus diesem Grund die Tabelle ein wenig unförmig geworden ist.

    Code

                                        
                                    <!DOCTYPE html> 
    <html lang="de"> 
    <head> 
    <meta charset="utf-8" /> 
    <title>E1_1mal1</title> 
    <style>
    td,th{
    width:20px;
    text-align:center;
    }
    </style>
    </head> 
        <body> 
        <h1>Das kleine 1 mal 1</h1> 
       <table> 
        <thead> 
        <?php 
                    echo "<th>*</th>"; 
                    for ($i = 1; $i <= 10; $i++) {  
                                echo "<th>"; 
                                echo $i; 
                                echo "</th>";                                      } 
                    ?> 
           </thead>  
                <tbody> 
        <?php 
                  
    for ($i = 1; $i <= 10; $i++) { 
    echo "<tr><th>$i</th>"; 
    for ($j = 1; $j <= 10; $j++) { 
    echo "<td>";  
    echo ($i * $j); 
    echo "</td>"; 
    } 
    echo "</tr>"; 
    } 
                    ?> 
                    </tbody> 
            </table> 
        </body> 
    </html>