Die erste Zeile macht er grau, das ist richtig. die zweite weiß, das ist auch richtig. aber ab der dritten wird alles grau und nicht mehr abwechselnt.
irgentwas ist glaube ich mit diesem i++ falsch, ich komme aber nicht drauf.
helft mir mal bitte.
irgentwas ist glaube ich mit diesem i++ falsch, ich komme aber nicht drauf.
helft mir mal bitte.
PHP-Code:
<?
$abfrage = "select * from $entries_table where field20 like '%$suchkat%' and field18 like '%$suchbegriff%' order by field0 asc";
$result = mysql_query($abfrage,$connect);
$num = mysql_numrows($result);
$i = 0;
?>
<table cellpadding="0" cellspacing="0" border="0" width="600" align=center>
<tr>
<td class="flaeche" align="left" width="100%"> <font class="news_betreff"><b>
<?
echo $num;
if ($num == 1)
echo " Eintrag";
else
echo " Einträge";
?>
</b></font></td>
</tr>
<?
while(($row = mysql_fetch_array ($result)) && $i<$num)
{
if ($i == 1) echo '<tr>'; else echo '<tr class="tabhell">';
echo '<td> ';
echo mysql_result($result,$i,"field18");
echo '</td></tr>';
$i++;
}
?>
Kommentar