forked from qwerty/tupali
Importacion con timestamp como tercer metadato
This commit is contained in:
parent
779a2db7b7
commit
c267b25bba
@ -10051,7 +10051,17 @@ $controlcito= "$datos[0]";
|
||||
}else{$controlcito="";}
|
||||
if($campo[1] =="equipo") {
|
||||
$equipo= "$datos[1]";
|
||||
}else{$equipo=NULL;}
|
||||
}else{
|
||||
if( isset($_SESSION['equipo'])) { $equipo = $_SESSION['equipo']; }else{$equipo=NULL;}
|
||||
}
|
||||
|
||||
if($campo[2] =="timestamp") {
|
||||
$timestamp= "$datos[2]";
|
||||
$w_timestamp = "timestamp = '$timestamp',";
|
||||
}else{
|
||||
$w_timestamp ="timestamp= '".time()."',";
|
||||
}
|
||||
|
||||
for ($c=0; $c < $numero; $c++) {
|
||||
$columna = $datos[$c];
|
||||
|
||||
@ -10063,7 +10073,7 @@ if($accion === "grabar"){
|
||||
//$control=md5($perfil.$fila.time());
|
||||
$ip = obtener_ip();
|
||||
$graba_ip = " ip = INET_ATON('".$ip."') ";
|
||||
$consulta_campos = "INSERT INTO form_datos SET timestamp= '".time()."', id_usuario='$_SESSION[id]',id_empresa='$_SESSION[id_empresa]',form_id ='$perfil',
|
||||
$consulta_campos = "INSERT INTO form_datos SET $w_timestamp id_usuario='$_SESSION[id]',id_empresa='$_SESSION[id_empresa]',form_id ='$perfil',
|
||||
$graba_ip ,
|
||||
control = '$control', $consulta id_campo = '$campo[$numero_columna]' , contenido = '$columna', equipo = '$equipo'";
|
||||
// $verificar_campo = formulario_verificar_campo($perfil,$campo[$numero_columna]);
|
||||
@ -10099,7 +10109,7 @@ $numero_columna ++;
|
||||
$titulo = $datos[$c] ;
|
||||
$campo[$posicion] = $datos[$c];
|
||||
|
||||
if(($titulo != "equipo") and ($titulo != "control" ) ) {
|
||||
if(($titulo != "equipo") and ($titulo != "control" ) and ($titulo != "timestamp" ) ) {
|
||||
if(is_numeric($titulo)) { $titulo =$titulo;}else {$titulo = -9;}
|
||||
$verificar_campo = formulario_verificar_campo($perfil,$titulo);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user