require_once ("admin/conecta.php");
$result = mysql_query ("SELECT * FROM informativo ORDER BY RAND(), codigo DESC LIMIT 0,1");
while ($row = mysql_fetch_array($result)){
$codigo = $row["codigo"];
$fonte = $row["fonte"];
$texto = $row["texto"];
$titulo = $row["titulo"];
echo nl2br("
$titulo
Fonte: $fonte
$texto
");
}
?>