• 实例首页
  • 自学教程
  • IT工具箱
​x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP 表单 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
    <form action="welcome.php" method="post">
9
        名字: <input type="text" name="fname">
10
        年龄: <input type="text" name="age">
11
        <input type="submit" value="提交">
12
    </form>
13
</body>
14
​
15
</html>