| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/retoaventura/theme/default/ |
Upload File : |
<?php
if(isset($_POST['contact'])){
include 'modules/contact.php';
}
?>
<div class="container sidepadd">
<div class="box main wrapp padd bg_bk70">
<div class="box main wrapp">
<div id="title_av" class="light b_light">
Contacto Reto Aventura
</div>
<?php
$id=1;
?>
<div id="ajax_message"></div>
<div class="aventura_txt bg_bk70 contact">
<div id="form_box" class="col threefour">
</div>
<div class="clear"></div>
</div><!--EOF .aventura_txt-->
<div class="clear"></div>
</div>
</div>
</div>
<script>
function sendForm(name){
var form = $("#"+name);
var dataStr = form.serialize();
//$('#'+name).submit( function(e) { e.preventDefault(); } );
$.ajax({
type:"POST",
data: dataStr,
url:"modules/module_contact.php",
cache:false,
success:function(html){
$("#ajax_message").html(html);
}
});
}
</script>