@jahlives :
Das ist der komplette Code.
$counter ist natürlich bekannt :-)
Und error_reporting(E_ALL) ergab keine Fehler.
Das ist der komplette Code.
$counter ist natürlich bekannt :-)
Und error_reporting(E_ALL) ergab keine Fehler.
PHP-Code:
<?php
$num = mysql_num_rows($res);
$counter = 0;
while($data = mysql_fetch_array($res, MYSQL_ASSOC)){
$titel = $data["titel"];
?>
<div class="showbox2">
<table class=showtabelle width="30%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><?=$titel ?>
<?php
if (($counter >= 2) && ($counter % 2 == 0))
{
echo "<br>";
}
$counter++;
?>
</td>
</tr>
</table>
</div>
<?php } ?>
Kommentar