点击登录弹出的是验证码页面
不用输入账号密码,点击登录页面左上角出现四位验证码
不用输入账号密码,点击登录页面左上角出现四位验证码
2017-08-02
<?php
require_once'../include.php';
$username=$_POST['username'];
$password=md5($_POST['password']);
$verify=$_POST['verify'];
$verify1=$_SESSION['verify'];
if($verify==$verify1){
$sql="select*from imooc_admin where username='{$username}'and password='{$password}'";
$res=checkAdmin($sql);
print_r($res);
}else{
echo"<script>alert('验证码错误');</script>";
echo"<script>window.location='login.php';</script>";
}
举报