HEX
Server: Apache
System: Linux p3plzcpnl507593.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: vgijpbeijziw (6090429)
PHP: 8.3.24
Disabled: NONE
Upload Files
File: /home/vgijpbeijziw/public_html/ARTOFLIVINGDELHI.ORG/submit.php
<?php
$name			    =	$_REQUEST['name'];
$phone				=	$_REQUEST['phone'];
$email   			=	$_REQUEST['email'];
$city    			=	$_REQUEST['city'];
$message			=	$_REQUEST['message'];
$message	="<table border='0' width='600' align=center   cellpadding='2' cellspacing='0'>
	<tr>
	  <td colspan='2'>
		<font color='000000'><b>Enquiry </b></font>		</td>
	</tr>
	<tr>
	  <td  colspan=2>&nbsp;</td>
  </tr>
	<tr>
		<td width=38%  >		<font color='000000' >Name </font>		</td>

		<td width=62%   >$name			</td>
    </tr>
	
	<tr>
		<td  >
			<font color='000000'>Phone No.</font></td>
		<td >$phone		</td>
	</tr>
	
	
	 <tr>
		<td  >
			<font color='000000'>Email</font></td>
		<td >$email		</td>
	</tr>
	
	
   
   <tr>
		<td  >
			<font color='000000'>City</font></td>
		<td >$city	</td>
	</tr>
	

    
  
  <tr>
	  <td  ><font color='000000'>Message</font></td>
	  <td >$message</td>
  </tr>
  
  

	 <tr>
		<td colspan='2'></td>
	</tr>
</table>";
$to			="nitin@artoflivingdelhi.org";
$to.=","."";
$from				=	$email;	
$subject			=	"Msg From: " . $name ."Query Form(www.artoflivingdelhi.org)";
//$xheaders .= "X-Mailer: PHP\n"; // mailer
$xheaders .= "X-Priority: 6\n"; // Urgent Message!
$xheaders .= "MIME-Version: 1.0\r\n";
//$xheaders .= "Content-Type: text/html; charset=UTF-8\r\n";
$xheaders.= "Content-Type: text/html; charset=iso-8859-1\n";
mail($to, $subject, $message, $xheaders);
header("Location: thank-you.html");
?>