Changed method to POST

This commit is contained in:
Fred Boniface 2022-09-16 20:56:03 +01:00
parent b76ab7932c
commit f7885f63b5
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<html>
<body>
Subject: <?php echo $_GET["subject"]; ?>
Subject: <?php echo $_POST["subject"]; ?>
<br>
Details: <?php echo $_GET["detail"]; ?>
Details: <?php echo $_POST["detail"]; ?>
<br>
Browser: <?php echo $_SERVER["HTTP_USER_AGENT"]; ?>