if ( isset( $mod ) && !empty( $mod ) )
{
$fp = fopen("destacado.txt","wb");
fwrite($fp,$mod, strlen($mod) );
fclose($fp);
echo "
Noticia destacada: modificada
";
echo "
Volver al inicio del portal";
} else {
$fp = fopen("destacado.txt","r");
$file = fread($fp,filesize("destacado.txt"));
fclose($fp);
echo "Noticia destacada
";
echo "";
}
?>