Correcting teacher:查无此人
Correction status:qualified
Teacher's comments:完成的不错,继续加油
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>POST请求</title> </head> <body> <form action="" method="post"> <p> <label for="email">邮箱:</label> <input type="email" id="email" name="email" placeholder="邮箱必须包含@" value=""> </p> <p> <label for="password">密码:</label> <input type="password" id="password" name="password" placeholder="不能少于6位" value=""> </p> <button>登录</button> </form> </body> </html> <?php print_r($_POST); ?>
点击 "运行实例" 按钮查看在线实例