ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.136 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/litsolide.com/cgi-bin/1-Site_attente/contact/ |
Upload File : |
<?php
/* config start */
$emailAddress = 'phil@pictomatic.com';
/* config end */
require "1-Site_attente/phpmailer/class.phpmailer.php";
session_name("fancyform");
session_start();
foreach($_POST as $k=>$v)
{
if(ini_get('magic_quotes_gpc'))
$_POST[$k]=stripslashes($_POST[$k]);
$_POST[$k]=htmlspecialchars(strip_tags($_POST[$k]));
}
$err = array();
if(!checkLen('name'))
$err[]='Le champ du nom est trop court ou vide !';
if(!checkLen('email'))
$err[]='Le champ email est trop court ou vide !';
else if(!checkEmail($_POST['email']))
$err[]='Votre email n\'est pas valide !';
//if(!checkLen('subject'))
// $err[]='Vous n\'avez pas sélectionné un sujet !';
if(!checkLen('message'))
$err[]='Le champ de message est trop court ou vide !';
//if((int)$_POST['captcha'] != $_SESSION['expect'])
// $err[]='Le code CAPTCHA est faux !';
if(count($err))
{
if($_POST['ajax'])
{
echo '-1';
}
else if($_SERVER['HTTP_REFERER'])
{
$_SESSION['errStr'] = implode('<br />',$err);
$_SESSION['post']=$_POST;
header('Location: '.$_SERVER['HTTP_REFERER']);
}
exit;
}
$msg=
'<b>Nom / Prénom</b> : '.$_POST['name'].'<br />
<b>Téléphone</b> : '.$_POST['telephone'].'<br />
<b>Email</b> : '.$_POST['email'].'<br />
<b>Adresse</b> : '.$_POST['adress'].'<br />
<b>Message</b> :<br /><br />
'.nl2br($_POST['message']).'
';
$mail = new PHPMailer();
$mail->IsMail();
$mail->AddReplyTo($_POST['email'], $_POST['name']);
$mail->AddAddress($emailAddress);
$mail->SetFrom($_POST['email'], $_POST['name']);
//$mail->Subject = "A new ".mb_strtolower($_POST['subject'])." from ".$_POST['name']." | contact form feedback";
$mail->Subject = "Contact depuis le site ATTENTE";
$mail->MsgHTML($msg);
$mail->Send();
unset($_SESSION['post']);
if($_POST['ajax'])
{
echo '1';
}
else
{
$_SESSION['sent']=1;
if($_SERVER['HTTP_REFERER'])
header('Location: '.$_SERVER['HTTP_REFERER']);
exit;
}
function checkLen($str,$len=2)
{
return isset($_POST[$str]) && mb_strlen(strip_tags($_POST[$str]),"utf-8") > $len;
}
function checkEmail($str)
{
return preg_match("/^[\.A-z0-9_\-\+]+[@][A-z0-9_\-]+([.][A-z0-9_\-]+)+[A-z]{1,4}$/", $str);
}
?>