表单提交的方法代码怎么写
时间: 2024-01-26 13:03:12 浏览: 141
表单提交有两种方式:GET 和 POST。下面分别介绍这两种方式的表单代码:
1. GET 方式提交表单
```html
<form action="target-page.html" method="get">
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<input type="submit" value="Submit">
</form>
```
在表单中,`action` 属性指定了目标页面的 URL,`method` 属性指定了提交方式为 GET。在提交表单时,表单数据将作为 URL 的参数传递给目标页面。例如,如果用户在输入框中输入了 "John" 和 "john@example.com",则提交后的 URL 为:`target-page.html?name=John&email=john%40example.com`。
2. POST 方式提交表单
```html
<form action="target-page.html" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<input type="submit" value="Submit">
</form>
```
在表单中,`action` 属性指定了目标页面的 URL,`method` 属性指定了提交方式为 POST。在提交表单时,表单数据将作为 HTTP 请求的消息体传递给目标页面。在目标页面中,可以通过 $_POST 变量获取表单数据,例如:`$name = $_POST['name'];`。
需要注意的是,无论是 GET 还是 POST 方式提交表单,都需要在目标页面中对表单数据进行验证和处理,以防止恶意攻击和错误数据的影响。
阅读全文