ウェブサイトからフィードバックを送信するためのメールフォームを設定しようとしています。フォームは次のとおりです。
<form method='post' action='mailform.php'>
<fieldset>
<label for='message'><b>Reflection:<b></label><br/><br/>
<p>Tell us what you thought of the Workshop, did you enjoy the tasks?, Could we have done anything different?</p>
<textarea name='message' rows='15' cols='80'>
</textarea><br/>
<input type='submit' VALUE='Send' size='5' />
</fieldset>
</form>
そしてここにmailform.php
<?php
$message = $_REQUEST['message'] ;
mail("address here", $message);
?>
最後の?>ビットに関連するエラーが発生し続けます。
私は何が間違っているのですか?