have a seperate counter
$query = mysql_query("select * from $tabell_4");
$number = mysql_numrows($query) ;
$i = 0;
$bgcolor[0] = "#FFE38E";
$bgcolor[1] = "#FFFFFF";
$Search = "Test";
$j = 0
while ($i < $number) {
$Name = mysql_result($query_1,$i,"Name");
if (eregi ($Search, $Name)) {
Echo '<tr BGCOLOR='.$bgcolor[$j%2].'>';
$j++;
}
$i++;
}
-----Original Message-----
From: B�rd Tommy Nilsen [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 14, 2002 4:21 PM
To: '[EMAIL PROTECTED]'
Subject: [PHP] Different colors on lines
Can anyone help out with this ??
Since i do the search after the query, there is an problem if line 1 in the
Sql table matches, line 2 does not, but line 3 does.
Then the result will display the same color on the two lines
That would be printet in this example.
How can i make sure that it will allways display the colors
On each line ??
Regards
B�rd Tommy Nilsen
$query_1 = mysql_query("select * from $tabell_4");
$number_1 = mysql_numrows($query_1) ;
$i_1 = 0;
$bgcolor[0] = "#FFE38E";
$bgcolor[1] = "#FFFFFF";
$Search = "Test";
while ($i_1 < $number_1) {
$Name = mysql_result($query_1,$i_1,"Name");
if (eregi ($Search, $Name)) {
Echo '<tr BGCOLOR='.$bgcolor[$i_1%2].'>';
}
$i++;
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php