第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

點(diǎn)擊 input 提交驗(yàn)證后只是刷新了頁面,沒有提示錯(cuò)誤信息。

captcha.php 代碼:

<?php
session_start();
$width?=?100;
$height?=?40;
//?創(chuàng)建圖像
$image?=?imagecreatetruecolor($width,?$height);
//?白色背景
$bgcolor?=?imagecolorallocate($image,?255,?255,?255);
imagefill($image,?0,?0,?$bgcolor);
$captch_code?=?'';
//?隨機(jī)生成4位字母、數(shù)字組合
for?($i=0;?$i?<?4;?$i++)?{
????$fontsize?=?8;
????$fontcolor?=?imagecolorallocate($image,?mt_rand(0,120),?mt_rand(0,120),?mt_rand(0,120));
????$data?=?'abcdefghjkmnpqrstvwxyz23456789';
????$fontcontent?=?substr($data,?mt_rand(0,?strlen($data)),?1);
????$captch_code?.=?$fontcontent;
????$x?=?($i*100?/?4)?+?mt_rand(5,?10);
????$y?=?mt_rand(5,?10);
????imagestring($image,?$fontsize,?$x,?$y,?$fontcontent,?$fontcolor);
}
$_SESSION['authcode']?=?$captch_code;
//?生成干擾點(diǎn)
for?($i=0;?$i?<?200;?$i++)?{
????$pointcolor?=?imagecolorallocate($image,?mt_rand(50,200),?mt_rand(50,200),?mt_rand(50,200));
????imagesetpixel($image,?mt_rand(1,99),?mt_rand(1,39),?$pointcolor);
}
//?生成干擾線
for?($i=0;?$i?<?3;?$i++)?{
????$linecolor?=?imagecolorallocate($image,?mt_rand(80,220),?mt_rand(80,220),?mt_rand(80,220));
????imageline($image,?mt_rand(1,99),?mt_rand(1,39),?mt_rand(1,99),?mt_rand(1,39),?$linecolor);
}
header('Content-Type:image/png');
imagepng($image);
//?及時(shí)銷毀圖像
imagedestroy($image);

form.php 代碼:

<?phpif?(isset($REQUEST['authcode']))?{
????session_start();
????if?(strtolower($_REQUEST['authcode'])?==?$_SESSION['authcode'])?{
????????echo?'輸入正確!';
????}?else?{
????????echo?'輸入錯(cuò)誤,請(qǐng)返回重試。';
????}
????exit();
}?><!DOCTYPE?html>
<html>
<head>
????<meta?charset="UTF-8">
????<title>Document</title>
</head>
<body>
????<form?method="post"?action="form.php">
????????<img?id="captcha_img"?src="captcha.php?r=<?php?echo?rand();?>"?width="100"?height="40"?alt="">
????????<p><a?href="javascript:void(0)"?onclick="document.getElementById('captcha_img').src='captcha.php?r='+Math.random()">看不清?換一張</a></p>
????????<input?type="text"?name="authcode"?value=""?placeholder="請(qǐng)輸入圖片中的內(nèi)容">
????????<input?type="submit"?value="提交">
????</form>
</body>
</html>


正在回答

1 回答

from.php

第一行變量輸入錯(cuò)誤,應(yīng)該是:$_REQUEST。

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
PHP實(shí)現(xiàn)驗(yàn)證碼制作
  • 參與學(xué)習(xí)       37929    人
  • 解答問題       338    個(gè)

各種形態(tài)驗(yàn)證碼核心原理與實(shí)現(xiàn)技巧,講解實(shí)現(xiàn)過程中的技術(shù)難點(diǎn)

進(jìn)入課程

點(diǎn)擊 input 提交驗(yàn)證后只是刷新了頁面,沒有提示錯(cuò)誤信息。

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)