PHP開發註冊頁面驗證碼
驗證碼也是用外面的PHP程式碼寫出來的,詳情可以存取我們的驗證碼製作程序,本章節所用到的驗證碼程序如下
創建yanzhengma.php文件,驗證碼程式
<?php session_start(); Header("Content-type:image/PNG"); $im = imagecreate(60, 25); $back = imagecolorallocate($im, 245, 245, 245); imagefill($im, 0, 0, $back); $vcodes = ""; for($i = 0; $i < 4; $i++){ $font = imagecolorallocate($im, rand(100, 255), rand(0, 100), rand(100, 255)); $authnum = rand(0, 9); $vcodes .= $authnum; imagestring($im, 5, 9 + $i * 10, 5, $authnum, $font); } $_SESSION['VCODE'] = $vcodes; for($i=0;$i<200;$i++) { $randcolor = imagecolorallocate($im, rand(0, 255), rand(0, 255), rand(0, 255)); imagesetpixel($im, rand()%60, rand()%25, $randcolor); // } imagepng($im); imagedestroy($im); ?>
注意:在線上執行驗證碼程式會出現亂碼,需要將在本地運行
怎麼把我們的驗證碼加入頁面中去呢?
打開我們的驗證碼程序,發現驗證碼在網頁的顯示,就是一張圖片,這樣我們就可以<img>標籤了,代碼如下
<p>验 证 码:<input type="text" name="yzm" id="yzm"> <img src="yanzhengma.php">
src :就是我們的驗證碼程序,如下程序不在同一層目錄,需要加具體路徑
這樣我們就把驗證碼加入到了頁面中,但是我們想一下,我們一般點擊驗證碼,驗證碼就會刷新一下,這就需要我們的JS來實現了,只需要在<img>標籤後面加入下面這句代碼就可以了
<img src="yanzhengma.php" onClick="this.src='yanzhengma.php?nocache='+Math.random()" style="cursor:hand">
我們把驗證碼和我們之前做的頁面程式碼融合在一起
完整程式碼如下
<!doctype html> <html> <head> <meta charset="utf-8"> <title>PHP中文网</title> <style type="text/css"> body{background-color: rgba(223, 255, 231, 0.28) } .container{ border-radius: 25px; box-shadow: 0 0 20px #222; width: 380px; height: 400px; margin: 0 auto; margin-top: 200px; background-color: rgba(152, 242, 242, 0.23); } .right { position: relative; left: 40px; top: 20px; } input{ width: 180px; height: 25px; } button{ background-color: rgba(230, 228, 236, 0.93); border: none; color: #110c0f; padding: 10px 70px; text-align: center; display: inline-block; font-size: 16px; cursor: pointer; margin-top: 30px; margin-left: 50px; } </style> </head> <body> <form action="" method="post"> <div class="container"> <div class="right"> <h2>用户注册</h2> <p>用 户 名:<input type="text" name="name" id="name"></p> <p>密 码: <input type="password" name="pwd" id="pwd"></p> <p>确认密码: <input type="password" name="pwdconfirm" id="pwdconfirm"></p> <p>验 证 码:<input type="text" name="yzm" id="yzm"> <img src="yanzhengma.php" onClick="this.src='yanzhengma.php?nocache='+Math.random()" style="cursor:hand"></p> <p><button type="submit" value="注册" >立即注册</button></p> </div> </div> </form> </body> </html>
現在css樣式也有了,驗證碼也有了,下一步就是需要對我們的內容驗證了,例如用戶名和密碼沒填寫是不讓用戶提交的,兩次輸入的密碼不一樣也是不讓提交的,這就要用我們的js來實現。下一節我們就為大家講述怎麼用JS來判斷這些資訊