菜鸟教程:超级全局变量(https://www.runoob.com/php/php-superglobals.html)
表单(https://www.runoob.com/php/php-forms.html)
表单验证(https://www.runoob.com/php/php-form-validation.html)
表单必填字段(https://www.runoob.com/php/php-form-required.html)
表单验证邮件和url(https://www.runoob.com/php/php-form-url-email.html)
完整表单实例(https://www.runoob.com/php/php-form-complete.html)
$_GET变量(https://www.runoob.com/php/php-get.html)
$_POST变量(https://www.runoob.com/php/php-post.html)
目录
超级全局变量之$_SERVER
$_SERVER 是一个包含了诸如头信息(header)、路径(path)、以及脚本位置(script locations)等等信息的数组。
<?php
header("Content-type:text/html;charset='UTF-8'"); // 指定php输出文件格式和编码格式,解决输出文本内容乱码
echo '<pre style="color: firebrick; font-weight: bold;">';
print_r($_SERVER);
echo '</pre>';
?>
$_POST和$_GET
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <form method="post" action="./login_ver.php"> <div style="width: 250px;margin: auto;border: 3px solid rgba(255, 140, 0, 0.426);border-radius: 3px;display: flex;flex-wrap: wrap;background-color: rgba(146, 209, 0, 0.364);"> <p> <label for="username">用户名:</label> <input type="text" name="username" placeholder="请输入用户名"> </p> <p> <label for="pw">密 码:</label> <input type="password" name="pw" placeholder="请输入密码"> </p> <p><input style="width: 250px;" type="submit" value="登录"></p> </div> </form> </body> </html>
// login_ver.php 文件 <?php $name = $_POST['username']; $pd = $_POST['pw']; echo $name,$pd; if($name == "流连忘返" && $pd == '123456'){ echo "<script>alert('恭喜 $name 登陆成功'); window.location.href='https://passport.csdn.net/';</script>"; }else{ echo "<script>alert('用户名或密码错误,请核对后重新登陆'); window.location.href='./login.html';</script>"; } ?>
get和post的相同点:
- 都是跨页面传值
不同点:
- 使用的数组不同
- Get是url传值(值在url里面),post是表单传值
- Get的安全性比较低
- Get传值可以写在url上面访问,但Url长度有限制