post传值
参数放在header请求头中发送, 在url地址上看不到请求参数,适合敏感信息(与get区别开)、
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>post</title> </head> <body> <form action="" method="post"> <label for="email">邮箱:</label> <input type="email" id="email" name="email" value=""> <label for="password">密码:</label> <input type="password" id="password" name="password" value=""> <button>登录</button> </form> </body> </html> <?php print_r($_POST['email']); echo '<br>'; print_r($_POST['password']); ?>
效果:
手写:
总结:
注意POST与GET传值的区别
注意在表单提交中,与POST传值相关的下标指的是input标签中name的值。