|
Posted by Richard Davey on 03/30/05 21:08
Hello Leif,
Wednesday, March 30, 2005, 6:54:15 PM, you wrote:
LG> http://www.devtek.org/tutorials/alternate_row_colors.php
There is no need to involve a math heavy modulus function just to
alternate row colours! The following single line will do it just as
well, swap the colours for whatever you need and echo them where
required:
$bgcolor = ($bgcolor === '#daf2ff' ? '#c9e1ef' : '#daf2ff');
Best regards,
Richard Davey
--
http://www.launchcode.co.uk - PHP Development Services
"I do not fear computers. I fear the lack of them." - Isaac Asimov
[Back to original message]
|