| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 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/store.tiacyrusxxx.com/public_html/designerclone/ |
Upload File : |
<?php
include('site.config.php');
if ($member_id > 0) {
if (isset($_POST['comment'])) {
$comment = $_POST['comment'];
$comment = strip_tags($comment); // STRIP HTML
$comment = str_replace(chr(10), "<br />", $comment); // CONVERT LINE SPACE TO HTML <BR>
$comment = addslashes($comment); // ...
$sql = @mysql_query("INSERT INTO cms_members_support SET member_id='$member_id', date='$today', comment='$comment'");
$comment = stripslashes($comment);
$member_info = @mysql_query("SELECT email FROM cms_members WHERE member_id = '".$member_id."'");
$member_email = @mysql_result($member_info, 0, 'email');
$subject = " ** digiNUDES.COM SUPPORT ** ";
$message = "SUPPORT FORM:<br><br>";
$message .= "<strong>member_id:</strong> ".$member_id."<br><br>";
$message .= "<strong>e-mail:</strong> ".$member_email."<br><br>";
$message .= "<strong>message:</strong> ".$comment."<br><br>";
sendMail('sensorghost@gmail.com', '', $subject, $message, $member_email);
header('Location: acct_support.php?confirm=yes');
} else {
include('site.header.php');
if (isset($_GET['confirm'])) {
echo '<div align="center">thank you! we will get back to you as soon as possible.</div>';
} else {
?>
<form method="post" action="acct_support.php" name="support">
<table border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td><textarea name="comment" cols="70" rows="6"></textarea></td>
</tr>
<tr>
<td><div align="center"><br /><a href="javascript:document.support.submit();" class="pagination"><span>send support ticket</span></a></div></td>
</tr>
</table>
</form>
<?php
}
include('site.footer.php');
}
}