老师帮我看下,跳转的都是verify==verify1的界面
我在verify==verify1条件下echo了验证成功。为什么我用户名、密码、验证码都没有输,我点登陆,跳转的都是验证成功的。
<?php
require_once '../include.php';
$username=$_POST['username'];
$password=md5($_POST['password']);
$verify=$_POST['verify'];
$verify1=$_SESSION['verify'];
if($verify==$verify1){
$sql="select*from jin_admin where username='{$username}'and password='{$password}'";
$res=checkAdmin($sql);
print_r($res);
echo "dengluchenggong";
}
else {
echo"<script>alert('验证码错误');</script>";
echo"<script>window.location='login.php';</script>";
}