<?php
$file= file("ofempleo/ofertas.txt");
$n = count($file);
for ($i=$n-1;$i>=0;$i--){
$dato= explode ("|<|",$file[$i]);
echo "<font style='font-family: arial; font-size: 13px; color: darkblue;'><b>$dato[0]</font></b> <a href=#>Ver</a><br>";
}
?>