<?php
$errores_error = "";
function errores_mensaje ($texto)
{
global $errores_error;
$errores_error = $texto;
}
function errores_mensaje_mas ($texto)
{
global $errores_error;
if ($errores_error != "") {
$errores_error .= "<BR>";
}
$errores_error .= $texto;
}
function errores_log ($texto)
{
error_log ($texto);
}
function errores_leer ()
{
global $errores_error;
return $errores_error;
}
?>