PHPを学んでいます
お問い合わせフォームを作っていますがエラーが出ていて困っています
送信ボタンを押したときに機能してくれるのようなものを作っていますが
エラーとしては
1つめ
Notice: Undefined index: name in C:\xampp\htdocs\php12\top.php on line 42
Notice: Undefined index: email in C:\xampp\htdocs\php12\top.php on line 47
Notice: Undefined index: message in C:\xampp\htdocs\php12\top.php on line 52
となっています
2つめボタンを押した際は
Not Found
The requested URL was not found on this server.
となっています
これらのエラーをなくすにはどうやればいいでしょうか
SQLも多少関係するようですが全くわからないです
いろいろ試したのですがわからなさ過ぎてお手上げ状態です
お問い合わせするときにエラーやお問い合わせの履歴削除を表示させたいのでそれもやり方も教えてほしいです。
<div class="contact"> <h2>お問い合わせ</h2> <form action="contact.php" method="GET"> <table> <tr> <th>お名前</th> <td><input type="text" name="name" /></td> <?php $_GET["name"];?> </tr> <tr> <th>メールアドレス</th> <td><input type="text" name="email" /></td> <?php $_GET["email"];?> </tr> <tr> <th>お問い合わせ内容</th> <td><textarea name="message"></textarea></td> <?php $_GET["message"];?> </tr> </table> <p class="tac"><input type="submit" value="送信する"></p> </form> </div>