程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP+javascript制作帶提示的驗證碼源碼分享

PHP+javascript制作帶提示的驗證碼源碼分享

編輯:關於PHP編程

html代碼:

復制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>簡單驗證碼</title>
</head>
<script language="javascript" src="js/checked.js"></script>
<body>
<form id="register" name="register" method="post" >
<table align="center">
    <tr>
      <td ><div align="right">驗證碼:</div></td>
      <td ><input id="yzm" type="text" name="yzm" size="8" onBlur="javascript:chkyzm(form)" onMouseOver="this.style.backgroundColor='#ffffff'" onMouseOut="this.style.backgroundColor='#e8f4ff'"/></td><td>
        <input id="yzm2" type="hidden" value="" /></td>
      <td align="center" valign="middle"><script>yzm()</script></td>
      <td ><a href="javascript:code()" >看不清</a></td>
      <td width="150"  align="center"><div id="yzm1"><font color="#999999">請輸入驗證碼</font></div></td>
    </tr> 
</table>
  </form>
</body>
</html>

JS代碼:

復制代碼 代碼如下:
function chkyzm(form){     //對驗證碼進行驗證
 if(form.yzm.value==""){
  yzm1.innerHTML="<font color=#FF0000>×驗證碼不能為空</font>";
 }else if(form.yzm.value!=form.yzm2.value){
  yzm1.innerHTML="<font color=#FF0000>×驗證碼輸入錯誤</font>";
 }else{
  yzm1.innerHTML="<font color=green>√驗證碼輸入正確</font>";
 }
}
function yzm(){      //生成驗證碼
 var num1=Math.round(Math.random()*1000000);//隨機小數放大
 var num=num1.toString().substr(0,4);//取4位整數
 var yzm2=document.getElementById("yzm2");
 document.write("<img name=codeimg src=yzm.php?num="+num+"'>");
 yzm2.value=num;
}
function code(){      //重置驗證碼
 var num1=Math.round(Math.random()*1000000);
 var num=num1.toString().substr(0,4);
 var yzm2=document.getElementById("yzm2");
 document.codeimg.src="yzm.php?num="+num;
 yzm2.value=num;
}

yzm.php代碼:

復制代碼 代碼如下:
<?php
header("Content-type: image/png");
$im=imagecreate(66,22);       //創建畫布
$black=imagecolorallocate($im,0,0,0);   //定義背景
$white=imagecolorallocate($im,255,255,255);  //定義背景
$gray=imagecolorallocate($im,200,200,200);  //定義背景
imagefill($im,0,0,$gray);      //填充顏色
for($i=0;$i<4;$i++){ //定義4位隨機數
 $str=mt_rand(1,5);  //定義隨機字符所在位置的的Y坐標
 $size=mt_rand(6,9); //定義隨機字符的字體
 $authnum=substr($_GET[num],$i,1);  //獲取超級鏈接中傳遞的驗證碼
 imagestring($im,$size,(3+$i*15),$str,$authnum,imagecolorallocate($im,rand(0,250),rand(0,250),rand(0,250)));//rand(0,500)數字的模糊程度
}       //水平輸出字符串
for($i=0;$i<200;$i++){  //執行for循環,為驗證碼添加模糊背景
  $randcolor=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255)); //創建背景
  imagesetpixel($im,rand()%70,rand()%30,$randcolor);  //繪制單一元素
}
imagepng($im);    //生成png圖像
imagedestroy($im);   //銷毀圖像
?>

注意:PHP需要配置才能執行相關方法。

運行效果:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved