I just finished up a script that displays all users in a database and noticed that it is hard to read because every row looks the same. So I was hoping that there is a way to have the scrip assign a color (through a css class) to each row so that it can alternate colors. Here is how I am echoing the the lines of users:Thanks for any help :)PHP Code:echo'
<tr>
<td>'.$username.'</td>
<td>'.$email.'</td>
<td>'.$signup.'</td>
<td>'.$ip.'</td>
<td><a href="index.php?act=chk_delete&id='.$id.'">[X]</a></td>
<td><a href="index.php?act=edit&id='.$id.'">Edit</a></td>
<td><a href="index.php?act=chk_ban&id='.$id.'">Ban</a></td>
</tr>';
}

