First of all hello to all in this forum. I have registered with the aim to resolve my persisting php problem!!
Below is the error that is getting...
Parse error: parse error, unexpected T_VARIABLE in /home/djmystic/public_html/TEST/contact.php on line 10
when i use this code...
<?php
$your_name = $_GET['t1'];
$your_email = $_GET['t2'];
$your_subject = $_GET['t3'];
$your_message = $_GET['t4'];
$recipient_email = "mystic.dj.ghs@gmail.com"
$subject = "from " . $your_email;
$headers = "From: " . $your_name . " <". $your_email . ">\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1';
$content .= "<html><head><title>Contact letter</title></head><body><br>";
$content .= "Name: <b>" . $your_name . "</b><br>";
$content .= "Subject: <b>" . $your_subject . "</b><br>";
$content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>";
$content .= $your_message;
$content .= "<br></body></html>";
mail($recipient,$subject,$content,$headers);
?>
<html>
<body bgcolor="#282E2C">
<div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeTo(300, 300)</script>