/ Published in: PHP
Expand |
Embed | Plain Text
function theme_oddeven($row) { if ($row % 2) { return 'odd'; } else { return 'even'; } }
You need to login to post a comment.
ReeceMarsland on 11/06/09
1 person have marked this snippet as a favorite
function theme_oddeven($row) { if ($row % 2) { return 'odd'; } else { return 'even'; } }
You need to login to post a comment.