Hi,
I'm getting this error in my code (trying to make a submit button work) and can't figure out what the problem is. Can someone help me?
Parse error: parse error, unexpected T_VARIABLE in C:\Inetpub\vhos ts\silverstudio hamilton.com\ht tpdocs\contact. php on line 3
Here is the code:[php]<?php
$your_name = $_GET['name'];
$your_E-mail = $_GET['email'];
$your_message_h ere = $_GET['message'];
$recipient_emai l = “ info@redskydesi gn.com ”
$subject = “from ” . $your_E-mail;
$headers = “From: ” your_name .” <” . $your_Email . ”>\n”;
$headers .= 'Content-type: text/html; charset=iso-8859-1';
$content = "<html><head><t itle>Contact letter</title></head><body><br> ";
$content .= "Name: <b>" . $your_name . "</b><br>";
$content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>" ;
$content .= $your_message;
$content .= "<br></body></html>";
mail($recipient _email,$subject ,$content,$head ers);
?>
<html>
<body bgcolor="#282E2 C">
<div align="center" style="margin-top:60px;color: #FFFFFF;font-size:11px;font-family:Tahoma;f ont-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeT o(300, 300)</script>[/php]redsky
I'm getting this error in my code (trying to make a submit button work) and can't figure out what the problem is. Can someone help me?
Parse error: parse error, unexpected T_VARIABLE in C:\Inetpub\vhos ts\silverstudio hamilton.com\ht tpdocs\contact. php on line 3
Here is the code:[php]<?php
$your_name = $_GET['name'];
$your_E-mail = $_GET['email'];
$your_message_h ere = $_GET['message'];
$recipient_emai l = “ info@redskydesi gn.com ”
$subject = “from ” . $your_E-mail;
$headers = “From: ” your_name .” <” . $your_Email . ”>\n”;
$headers .= 'Content-type: text/html; charset=iso-8859-1';
$content = "<html><head><t itle>Contact letter</title></head><body><br> ";
$content .= "Name: <b>" . $your_name . "</b><br>";
$content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>" ;
$content .= $your_message;
$content .= "<br></body></html>";
mail($recipient _email,$subject ,$content,$head ers);
?>
<html>
<body bgcolor="#282E2 C">
<div align="center" style="margin-top:60px;color: #FFFFFF;font-size:11px;font-family:Tahoma;f ont-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeT o(300, 300)</script>[/php]redsky
Comment