prueba algo como
Código PHP:
<table width="600" cellpadding="1" cellspacing="1" class="grilla" bgcolor="#E9E9E9">
<tr>
<th width="66" bgcolor="#FFFFFF">Fecha</th>
<th width="308" bgcolor="#FFFFFF">Titulo</th>
<th width="99" bgcolor="#FFFFFF">Publicado</th>
<th width="101" bgcolor="#FFFFFF">Otras Opciones</th>
</tr>
<?php
$lista_colores=array('#dfdfdf','#FFFFFF');
$num_colores=2;
$indice=0;
do
{
$color=$lista_colores[$indice % $num_colores];
$indice++;
?>
<tr bgcolor="<?php echo $color; ?>">
<td align="center"><p class="resalte"><?php echo $filas['fecha'] ?></p></td>
<td><p><?php echo $filas['titulo']; ?></p></td>
<td align="center"><p class="resalte"><strong>
<?php
if($filas['publicado']==0){
echo "NO";
}else{
echo "SI";
}
?>
</strong></p></td>
<td align="center"><a href="../editar/editar-eventos.php?id=<?php echo $filas['id'] ?>">Editar</a> | <a href="javascript:Eliminar('<?php echo $filas['id']; ?>');">Eliminar</a></td>
</tr>
<?php
}while($filas= mysql_fetch_array($resultados))
?>
</table>
solo un ejemplo, los datos y la cantidad de columnas depende de tu consulta