si mal no entiendo lo que te intentan decir seri algo asi, claro esta seria mo propia modificacion, es decir, yo lo haria asi:
Código PHP:
Ver original<?php
if($row["fecha_desfijacion"] >= $fecha_actual){
$enalce = "<a href=".$row["url"]." target= '_blank' ><img src='botonpdf.png' width='32' height='32'></a>";
} else {
$enlace = "Desfijad";
}
print"<tr class=off onMouseOver=this.className='on' onMouseOut=this.className='off'>
<td><center>
<a href= ".$row["url"]." target= '_blank' >".$row["comparendo"]."</a>
</center></td>
<td><center><a href= ".$row["url"]." target= '_blank' >".$row["fecha_fijacion"]."</a>
</center></td>
<td><center><a href= ".$row["url"]." target= '_blank' >".$row["fecha_desfijacion"]."</a></center></td>
<td><center>".$enlace."</center></td>
</tr>";
print"</table></center>";
?>