PHP で連絡先フォームを作成しようとしていますが、送信すると次のエラーが表示されます: 解析エラー: 構文エラー、予期しない ')' in /home/aginther14/aginther14.interactivedesignlab.com/contact.php on line 7
PHP を初めて使用するのですが、どうすれば修正できますか? ありがとう。
<?php
$to = "gintherthegreat@gmail.com";
$subject = "AdamGinther.com Message";
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$headers = "From: $email";
$sent = mail($to, $subject, $message, $headers, $email,) ;
if($sent)
header("Location: contactconfirmed.html");
else
{print "We encountered an error sending your mail"; }
?>
<form name="contact" action="contact.php" method="post" autocomplete="off">
Name: <input type="text" name="Usersname"><br><br>
E-Mail: <input type="text" name="email"><br><br>
Comment:<br> <textarea name="message"></textarea><br><br>
<input type="submit" value="Send Me a Message!" id="button">