42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?
// ==============
// === report ===
// ==============
include_once($_SERVER['DOCUMENT_ROOT']."/config/config.php");
include_once($_SERVER['DOCUMENT_ROOT']."/account/class/class.report.php");
$Report=new Report();
if ($Report->needUpdate()==1) {
$Report->build_grafic();
$Report->email();
}
?>
|