用php编写一个form表单,分别用get和post提交,然后在浏览器按F12 看下请求响应格式
时间: 2024-03-19 19:46:03 浏览: 85
好的,以下是一个简单的 PHP 表单,分别使用 GET 和 POST 方法提交数据:
```
<!DOCTYPE html>
<html>
<head>
<title>PHP Form</title>
</head>
<body>
<h2>使用 GET 方法提交表单</h2>
<form action="get-form.php" method="get">
<label for="name">姓名:</label>
<input type="text" name="name" id="name"><br><br>
<label for="email">邮箱:</label>
<input type="email" name="email" id="email"><br><br>
<input type="submit" value="提交">
</form>
<h2>使用 POST 方法提交表单</h2>
<form action="post-form.php" method="post">
<label for="name">姓名:</label>
<input type="text" name="name" id="name"><br><br>
<label for="email">邮箱:</label>
<input type="email" name="email" id="email"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
您需要将上面代码保存为一个名为 `index.php` 的文件,然后创建两个新的 PHP 文件 `get-form.php` 和 `post-form.php` 来处理 GET 和 POST 请求。下面是一个简单的示例代码:
```
<!-- get-form.php -->
<!DOCTYPE html>
<html>
<head>
<title>GET Form Response</title>
</head>
<body>
<h2>GET 表单提交结果:</h2>
<p>您的姓名是:<?php echo $_GET["name"]; ?></p>
<p>您的邮箱是:<?php echo $_GET["email"]; ?></p>
</body>
</html>
```
```
<!-- post-form.php -->
<!DOCTYPE html>
<html>
<head>
<title>POST Form Response</title>
</head>
<body>
<h2>POST 表单提交结果:</h2>
<p>您的姓名是:<?php echo $_POST["name"]; ?></p>
<p>您的邮箱是:<?php echo $_POST["email"]; ?></p>
</body>
</html>
```
请注意,以上代码仅是示例,您需要根据自己的需求和逻辑进行修改和完善。
最后,您可以在浏览器中按 F12 打开开发者工具,在 Network 选项卡中查看表单提交的请求和响应格式。
阅读全文