/var/www/clients/client1/web2/web
NameSizeModeActions
admin/-0755rm
Connections/-0755rm
css/-0755rm
error/-0755rm
fonts/-0755rm
img3/-0755rm
img_banners/-0755rm
img_certificaciones/-0755rm
img_pdfs/-0755rm
img_sliders/-0755rm
img_tabla/-0755rm
img_tabla_fusion/-0755rm
js/-0755rm
latynflexOLD/-0755rm
latynfusion/-0755rm
latynlatyn/-0755rm
latynplast/-0755rm
latyntools/-0755rm
stats/-0755rm
valforte/-0755rm
videos/-0755rm
_videos/-0755rm
.htaccess2820644editdlrm
Catalogo_Latynbio.pdf3953230644editdlrm
envia_form.php28310644editdlrm
favicon.ico73580754editdlrm
favicon.png7840644editdlrm
footer.php79440644editdlrm
footer_.php79750644editdlrm
graba_contacto.php23860644editdlrm
gracias.html79840644editdlrm
gracias.php7960644editdlrm
graciasst.php7340644editdlrm
header.php70350644editdlrm
header_.php70780644editdlrm
index.php48520644editdlrm
media-content.php845530644editdlrm
politicas.php49730644editdlrm
robots.txt140754editdlrm
serviciotecnico.php72080644editdlrm
videolatynconexiones.mp4164151550644editdlrm
_index.html150790754editdlrm
Edit: /var/www/clients/client1/web2/web/graba_contacto.php (2386B)
Documento sin título
Nombre y apellido '.$_POST['data']['nombre'].'
Empresa '.$_POST['data']['empresa'].'
Telefono '.$_POST['data']['telefono'].'
Email '.$_POST['data']['email'].'
Mensaje '.$_POST['data']['mensaje'].'
'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"https://www.google.com/recaptcha/api/siteverify"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('secret' => '6LeHAMYaAAAAAKVhM5edpypuP92GejupXI5rm3fI', 'response' => $_POST['data']['g-recaptcha-response']))); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); $arrResponse = json_decode($response, true); if($arrResponse["success"] == '1' ) { mail( "info@latyn.net", "Contacto - Latynconexiones", $html, $cabeceras ); //mail( "eugenio@creatica.agency", "Contacto - Latynconexiones", $html, $cabeceras ); if ((isset($_POST['data']['nombre'])) && ($_POST['data']['nombre'] != "")) { $insertSQL = sprintf("INSERT INTO contactos (tipo, id_sitio, fecha, nombre, empresa, telefono, email, mensaje) VALUES ('Contacto', 5,%s, %s, %s, %s, %s, %s)", GetSQLValueString(date('Y-m-d'), "date"), GetSQLValueString($_POST['data']['nombre'], "text"), GetSQLValueString($_POST['data']['empresa'], "text"), GetSQLValueString($_POST['data']['telefono'], "text"), GetSQLValueString($_POST['data']['email'], "text"), GetSQLValueString($_POST['data']['mensaje'], "text")); $Result1 = mysqli_query($latynconexiones, $insertSQL) or die(mysqli_error()); } } ?>