Brad Ciszewski wrote:
i need some assistance making my table (rows) change color for every other
data. here is what i have so far, but i get a "unexpected T_STRING error".
this error's line is: if($thisRow mode 2 == 0){

I beleive you want

if($thisRow % 2 == 0)
not
if($thisRow mode 2 == 0)

http://us2.php.net/operators.arithmetic

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to