
guillermo murillo - 2015-11-22 18:32:24 -
In reply to message 1 from Hermann Drees
only for utils tools functions
utils.php:
<?php
function escribe_log($texto) {
$fp = fopen("../webadmin.log", "a");
fprintf($fp, "[".date("H:i:s")."] => $texto\n");
fclose($fp);
}