Viewing file: include_contar.php (1.37 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//////////////////////////////////////////////
// Herramienta de inserción de estadisticas //
//////////////////////////////////////////////
// Inclusiones
//include ('class_consulta_sql.php');
// 0. Fecha
$f = new fecha;
$f->sys_fecha_short();
$fecha = $f->FECHA_SYS_CORTA;
// 1. Buscar si ya hay registro de la fecha
$cuando = "estadisticas_fecha ='" . $fecha ."' and categoria_tema_id='". $patron ."'";
$query = "select estadisticas_numero from administracion_estadisticas where " . $cuando;
$select = new Select($query, 1, $inicio ,0);
// 2. Extrae los resultados en un arreglo de dos dimensiones
$resultados = $select->RESULTADO;
$this->RESULTADOS = $select->RESULTADO;
$this->NUMERO_REGISTROS = $select->NUMERO_REGISTROS;
// 3. Inserción de los valores de estadísticas
if ($this->NUMERO_REGISTROS == 0) {
$valores_insertar_register = "'$patron','$fecha',1";
$query_register = "insert into administracion_estadisticas values(" . $valores_insertar_register . ")";
$insert_register = new Select($query_register, "ins_", 0 ,0);
}else{
$num = $resultados[0][0] + 1;
$set = "estadisticas_numero ='" . $num . "'";
$query = "update administracion_estadisticas set " . $set . " where categoria_tema_id ='" . $patron . "' and estadisticas_fecha = '" . $fecha . "'";
$update = new Select($query, "edi_", 0 ,0);
}
?>
|