| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/www.superporner.com/porn/controllers/ |
Upload File : |
<?
if($_POST['name'] && $_POST['email'] && $_POST['content'] && eregi('@',$_POST['email']) && (strtolower($_POST['captchaaa']) == strtolower($_SESSION['captcha']))) {
if(!$_SESSION['flood'] || ($_SESSION['flood'] != '' && time() > ($_SESSION['flood'] + 600))) {
$to = $admin_email;
$subject = "Contact Form - $sitename";
$from = "From: ".$_POST['name']." <".$_POST['email'].">";
$message = strip_tags($_POST['content']);
if(mail($to,$subject,$message,$from)) {
$_SESSION['flood'] = time();
$success = true;
}
} else {
$errors[] = "We're sorry, you can only send a message once every 10 minutes. Please try again in ".(10-(ceil((time()-$_SESSION['flood'])/60)))." minute(s)";
}
}else{
if($_POST){
$errors[] = "All fields are mandatory";
}
}
$title = 'Contact Us';
$headertitle = 'Contact Us';
getTemplate('template.overall_header.php');
getTemplate('template.contact.php');
getTemplate('template.overall_footer.php');
?>