Nein, das ist es nicht.
Ich will, dass der Text in allen Spalten bis "auf den Boden" kommt.
Also ohne Bild wäre das z.B. so:
Code:
<table border="0" cellpadding="6">
<tr>
<?php
$text = 'Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text usw.';
$length = ceil(strlen($text) / 3);
$text = explode(' ', $text);
$l = 0;
for($i = 1; $i <= 3; $i++) {
$newText = '';
echo '<td style="text-align:justify" valign="top">';
for($g = $l; $g <= count($text); $g++) {
if (strlen($newText) <= $length || $i == 3) {
$newText .= $text[$g] .' ';
}
else {
$l = $g;
break;
}
}
echo $newText;
echo '</td>';
}
?>
</tr>
</table>
PS: Gibt's eigentlich auch Code-Formatierung für PHP in der
DP?