Also, um ein einfache Beispiel zu geben:
<html>
<head>
<title>x</title>
</head>
<body>
<h1>Table:</h1>
<table border="1">
<tr>
<?php
echo "<td width=\"20\">X</td>";
echo "<td width=\"40\">Y</td>";
?>
</tr>
</table>
<hr>
</body>
</html>
Du schreibst leider nicht, was nicht funktioniert und in welchem Browser bzw. welchen PHP-Fehler Du bekommst. Beim Mozilla 0.9.4 schaut mein Demo so aus, wie erwrtet, Ie 5.5 detto.
|