<?php include "webpanel/" . $_GET['grupo'] . "/include_permiso.php"; $totalhoy = bandwidth_calcular($_GET['dominio'], 0); $totalayer = bandwidth_calcular($_GET['dominio'], 1); ?> <form method="GET" action="index.php"> <input type="hidden" name="grupo" value="<?php echo $_GET['grupo']; ?> "> <input type="hidden" name="seccion" value="<?php echo $_GET['seccion']; ?> "> <input type="hidden" name="pag" value="<?php echo $_GET['pag']; ?> "> <input type="hidden" name="dominio" value="<?php echo $_GET['dominio']; ?> "> <input type="hidden" name="id" value="<?php echo $_GET['id']; ?> "> <font size="2" face="Arial, Helvetica, sans-serif">Estadísticas de ancho de banda Dominio</font><br> <br> <table width="75%" border="1" bordercolor="#333333" cellspacing="0" cellpadding="0"> <tr>
function bandwidth_cron() { $dominios = apache_listdomains(); foreach ($dominios as $dominio) { $consumido = bandwidth_calcular($dominio, 1); $fechaconsumo = DateAdd("d", -1, mktime()); //Sacamos la fecha de ayer bandwidth_grabar(date("j", $fechaconsumo), date("n", $fechaconsumo), date("Y", $fechaconsumo), $dominio, $consumido); } }