3
thats the plan using template...this is a temp solution
thanks ghia...it almost work but it only use the even class for all row
i got another solution from another forum i use this
le="color: #000000"><?php $int = 0; while (/* ... */) { echo '<tr class="', ++$int & 1 ? 'even' : 'odd', '">'; // ... }
and it works