Ich habe folgendes Problem
Ich habe einen Titel und danach eine Tabelle mit Daten drin
Das mache ich folgendermassen:
PHP
<html><table width=900> <tr><td width=3%> <strong>ID </td>
<td width=27%> <strong> Name Vorname </td>
<td width=7%> <strong>NR</td>
<td width=22%> <strong>Club </td>
<td width=10% align='right'> <strong><a href='<?php echo $auto1;?>'>Auto1</a></strong></td>
<td width=9% align='right'> <strong><a href='<?php echo $auto2;?>'>Auto2 </a></strong></td>
<td width=8% align='right'> <strong><a href='<?php echo $auto3;?>'>Auto3 </a></strong></td>
<td width=10% align='right'> <strong><a href='<?php echo $auto4;?>'>Auto4 </a></strong></td>
<td width=10%> <strong><a href='<?php echo $wohnort;?>'span STYLE="color: red">Wohnort </a><strong></td>
<td width=7% align='right'> <strong>Autonr</strong></td>
</tr>
</table>
<br>
<?php
echo "<tr bgcolor='#FFFEEE'>
<td width=3% align='right'>".$ID." </td>
<td width=27%>".$row_res['name']." ".$row_res['firstname']."</td>
<td width=7%>".$row_res['nr']."</td>
<td width=22%>".$row_res['club']."</td>
<td width=10% align='right'>".$row_res['auto1']. "</td>
<td width=9% align='right'>".$row_res['auto2']."</td>
<td width=8% align='right'>".$row_res['auto3']."</td>
<td width=10% align='right'>".$row_res['auto4']."</td>
<td width=10% align='right'>".$row_res['wohnort']."</td>
<td width=7% align='right'>".$row_res['autonummer']."</td>
</tr>";
}
?>
</html>
Alles anzeigen
Nun sind aber der Titel und die Tabelle nicht direkt untereinander.
Kann mir jemand helfen? Wie muss ich es erstellen, dass die Titeltabelle und die Tabelle zwingend synchron zueinander sind?
Vielen Dank für eure Hilfe!