最新回答 / 慕移动8855887
<?phprequire_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='{$passw...
2017-08-02
已采纳回答 / Gemma_Tong
image.func.php这个脚本只是一个函数,并没有调用函数来显示验证码图片,所以单独运行image.func.php的话当然是空白一片。在getVerify.php有调用就么问题。另外一个问题 $_SESSION [$sess_name] 总是得到固定值3708 不大清楚,猜测是在dologin那个脚本里面,写的是$_SESSION['verify'];吗?要保证 中括号里面的和 verifyImage函数里 $sess_name = "verify" 的值一致哇。
2017-08-01
最新回答 / Gemma_Tong
因为程序如果没有进入到 if (move_uploaded_file($file['tmp_name'], $destination)) 这一步里面去的话,实际上是没有 uploadedFiles这个变量定义的。那么在return的时候直接返回uploadedFiles就会这样报错。建议在return的时候作三元运算。比如 return isset($uploadedFiles) ? $uploadedFiles : null;
2017-08-01
已采纳回答 / Gemma_Tong
$fontfile="../fomts/".$fontfiles[mt_rand(0,count($fontfiles)-1)]; 文件夹名字是不是写错了 fomts 实际上应该是fonts?
2017-07-29
最新回答 / 抬山
function verifyImage($type = 1,$length = 4,$pixel=0,$line=0,$sess_name = "verify"){session_start();//创建画布 $width = 80; $height = 28; $image = imagecreatetruecolor($width, $height); $white = imagecolorallocate($image, 255, 255, 255); $black ...
2017-07-24