データを電子メールIDに電子メールで送信するためのフォームを作成しました。しかし、フォームに入力して送信すると、ブラウザは次のように言っています。
サーバーエラー。の取得中に Web サイトでエラーが発生しました
http://localhost/process.php
。
コードは次のとおりです。
form1.html
<html>
<head>
<title>Form</title>
</head>
<body>
<form method = "post" action = "process.php">
Enter your name <input type = "text" name = "namee" id = "namee" value = "enter your name" />
Enter your phone number <input type = "text" name = "phone" id = "phone" />
<br>
<input type = "submit" value = "post it!" />
</form>
</body>
</html>
プロセス.php
<?php
$person_name = $_POST["namee"];
$person_number = $_POST["phone"];
$to = "example234671_1@gmail.com";
$subject = "form filled up";
$body = $person_name. "<br>" $person_number . "<br>" . $person_name ;
mail($to, $subject, $body);
echo "Thank you!" ;
?>
エラーは何ですか??