nose si entendi bien lo que quieres pero te dejo esto
Código PHP:
<?php
$i = 0;
while ($fila=mysql_fetch_array($rst_productos))
{
?>
<tr class="modo1">
<?php if($i == 0){ ?>
<th><a href="otra.php"><?php echo $fila ["oferreferencia"];?></a></td>
<th><?php echo $fila ["oferfecha"];?></td>
<th><?php echo $fila ["ofermateria"];?></td>
<?php $i++;
}
else{
?>
<th><a href="oferta.php"><?php echo $fila ["oferreferencia"];?></a></td>
<th><?php echo $fila ["oferfecha"];?></td>
<th><?php echo $fila ["ofermateria"];?></td>
}
</tr>
<?php
}
?>