实例
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>get和post请求 传统表单验证</title> </head> <body> <!-- GET请求,读操作,通常以?开始的键值对方式出现在URL中 --> <!-- POST请求,写操作,post请求用户数据存放在请求头header中提交到服务器 --> <h2>用户登陆</h2> <form action="admin/check.php" method="POST"> <p> <label for="email">邮箱</label> <input type="email" name="email"> </p> <p> <label for="password">密码</label> <input type="password" name="password"> </p> <p><button>登陆</button></p> </form> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例