用php编写一个form表单
时间: 2023-09-18 20:16:23 浏览: 82
下面是一个简单的 HTML 表单,可以通过 PHP 处理提交的数据:
```html
<!DOCTYPE html>
<html>
<head>
<title>表单示例</title>
</head>
<body>
<form method="post" action="submit.php">
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">电子邮件:</label>
<input type="email" id="email" name="email"><br><br>
<label for="message">留言:</label><br>
<textarea id="message" name="message" rows="5" cols="40"></textarea><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
在上面的代码中,我们使用 `<form>` 元素创建了一个表单。`method` 属性指定了提交表单时使用的 HTTP 方法,此处为 POST 方法。`action` 属性指定了表单数据提交到的 URL,此处为 `submit.php`。
表单中包含三个输入字段:姓名、电子邮件和留言。每个输入字段都使用 `<label>` 元素来标识,并使用 `id` 属性将其与相应的输入元素绑定。`name` 属性指定了表单数据中该字段的名称。
最后,表单包含一个提交按钮,使用 `<input>` 元素创建。`type` 属性指定了按钮类型,此处为“submit”。`value` 属性指定了按钮上显示的文本内容。
阅读全文