PHP Classes

download

Recommend this page to a friend!

      DB Abstract Model  >  All threads  >  download  >  (Un) Subscribe thread alerts  
Subject:download
Summary:file missing
Messages:2
Author:Hermann Drees
Date:2015-11-22 13:52:48
 

  1. download   Reply   Report abuse  
Picture of Hermann Drees Hermann Drees - 2015-11-22 13:52:48
for which reason is the "utils.php" missing? Also examples should be usefull.
Thanks.

  2. Re: download   Reply   Report abuse  
Picture of guillermo murillo 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);
}