-
-
$(".login").live('click',function(){
- var 사용자 이름=$(". input_user").val();
- var 비밀번호=$(".input_ps").val();
- var code=$('.input_checkcode').val();
- if(사용자 이름 ===""){
- Alert("사용자 이름은 비워둘 수 없습니다.");
- return false;
- }
- if(password==""){
- Alert("비밀번호는 비워둘 수 없습니다. be는 비어 있습니다.");
- return false;
- }
var URL="checkLogin.php?";
- var DATA="&username=" 사용자 이름 " &password =" 비밀번호 "&code=" code;
- $.getJSON(URL DATA,function(json){
- if(json.code=='code_error'){
- Alert('인증 코드 오류, 인증코드를 다시 입력해주세요');
- }
- if(json.username=='true_u'&&json.password=='true_p'){
- //alert(json.username "|" 사용자 이름 '..1');
- window.location="index.php";
- }
- if(json.username=='error_u'||json.password=='error_p') {
- Alert("사용자 이름이나 비밀번호가 잘못 입력되었습니다. 확인 후 다시 로그인해주세요!");
- window.location="login.php";
- }
- });
- }) ;
-
-
코드 복사
백엔드 checkLogin.php 키 코드:
-
- $code=$_GET['code'];
- if($code!=$_SESSION['captchaCode']['content'] )
- {$adminInfo['code']='code_error';};
-
- if($row['username']==$username&&$row['password']==$password) {
-
- $_SESSION['사용자 이름']=$row['사용자 이름'];
- $adminInfo['사용자 이름']='true_u';
- $adminInfo['password']=' true_p';
- mysql_close();
- }else
- if($row['username']!=$username){
- $adminInfo['username']='error_u';
- }
- if($row['password']!=$password){
- $adminInfo['password']='error_p';
- }
-
- //var_dump($ adminInfo);exit;
- echo json_encode($adminInfo);
-
코드 복사
내용은 다음과 같습니다.
checkCode.class.php//인증코드
-
- /*
- * PHP GD Lib 기반 보안 문자 클래스
- * @author Design
- * @version 1.0
- * @copyright js8.2010년 bbs.it-home.org
- * @demo
- * include('captchaClass.php');
- * $captchaDemo=new Captcha();
- * $captchaDemo->createImage();
- */
- class Captcha{
- //@인증 코드 이미지의 높이 정의
- private $height;
- //@Define the 인증 코드 이미지 너비
- private $width;
- //@인증 코드 문자 수 정의
- private $textNum;
- //@인증 코드 문자 내용 정의
- private $textContent;
- //@ 문자 색상 정의
- private $fontColor;
- //@임의의 텍스트 색상 정의
- private $randFontColor;
- //@글꼴 크기 정의
- private $ fontSize;
- // @Define 글꼴
- private $fontFamily;
- //@배경색 정의
- private $bgColor;
- //@임의의 배경색 정의
- private $randBgColor;
- // @문자 언어 정의
- private $textLang;
- //@간섭 지점 수 정의
- private $noisePoint;
- //@간섭 선 수 정의
- private $noiseLine;
- // 왜곡 여부를 @define
- private $distortion;
- //@왜곡된 이미지 소스를 정의
- private $distortionImage;
- //@왜곡 여부를 정의 border
- private $showBorder;
- // @Definition 인증 코드 이미지 소스
- private $image;
-
- //@Constructor 생성자
- public function Captcha(){
- $ this->textNum=4;
- $ this->fontSize=16;
- $this->fontFamily='c:\windows\fontsSIMYOU.ttf';//중국어 글꼴을 설정하세요. Linux 디렉터리로 변경
- $this->textLang ='en';
- $this->noisePoint=30;
- $this->noiseLine=3;
- $this- >distortion=false;
- $this->showBorder =false;
- }
-
- //@이미지 너비 설정
- 공용 함수 setWidth($w){
- $ this->width=$w;
- }
-
- //@이미지 높이 설정
- public function setHeight($h){
- $this->height=$h;
- }
-
- //@문자 수 설정
- public function setTextNumber($textN){
- $this->textNum=$textN;
- }
-
- //@문자 색상 설정
- public function setFontColor($fc) {
- $this->fontColor=sscanf($fc,'#%2x%2x%2x');
- }
-
- //@글꼴 크기 설정
- public function setFontSize($ n){
- $this->fontSize=$n;
- }
-
- //@글꼴 설정
- 공용 함수 setFontFamily($ffUrl){
- $this->fontFamily=$ffUrl;
- }
-
- //@문자 언어 설정
- 공용 함수 setTextLang($lang) {
- $this->textLang=$lang;
- }
-
- //@사진 배경 설정
- public function setBgColor($bc){
- $this-> bgColor=sscanf($bc,'#%2x%2x%2x');
- }
-
- //@노이즈 포인트 수 설정
- 공용 함수 setNoisePoint($n){
- $this->noisePoint=$n;
- }
-
- / /@간섭선 수 설정
- 공용 함수 setNoiseLine($n){
- $this->noiseLine =$n;
- }
-
- //@왜곡 여부 설정
- public function setDistortion($b){
- $this->distortion=$b;
- }
-
- //@테두리 표시 여부 설정
- public function setShowBorder($border){
- $this->showBorder=$border;
- }
-
- // @초기화 확인 코드 이미지
- public function initImage(){
- if(empty($this->width )){$this->width=floor($this->fontSize*1.3)*$ this->textNum 10;}
- if(empty($this->height)){$this- >height=$this->fontSize*2;}
- $this->image =imagecreatetruecolor($this->너비,$this->높이);
- if(empty($this ->bgColor)){
- $this->randBgColor=imagecolorallocate($this-> ;image,mt_rand(100,255),mt_rand(100,255),mt_rand(100,255));
- }else{
- $this->randBgColor=imagecolorallocate($this->image,$this->bgColor [0],$this->bgColor[1],$this->bgColor[2]);
- }
- imagefill($this->image,0,0,$this-> randBgColor);
- }
-
- //@임의의 문자 생성
- 공개 함수 randText($ type){
- $string='';
- switch($type){
- 케이스 'en':
- $str='ABCDEFGHJKLMNPQRSTUVWXY3456789';
- for($i=0;$ i<$this->textNum;$i ){
- $string=$string.' ,'.$str[mt_rand(0,29)];
- }
- break;
- case 'cn':
- for($i=0;$i<$this->textNum ;$i ) {
- $string=$string.','.chr(rand(0xB0,0xCC)) .chr(rand(0xA1,0xBB));
- }
- $string=iconv( 'GB2312','UTF-8',$string); //인코딩을 utf8로 변환
- break;
- }
- return substr($string,1);
- }
-
- //@인증 코드로 텍스트 출력
- public function createText(){
- $textArray=explode(' ,',$this->randText($this->textLang));
- $ this->textContent=join('',$textArray);
- if(empty($this->fontColor)){
- $this->randFontColor=imagecolorallocate($this->image, mt_rand(0,100),mt_rand(0,100),mt_rand(0,100));
- }else{
- $this ->randFontColor=imagecolorallocate($this->image,$this->fontColor[0] ,$this->fontColor[1],$this->fontColor[2]);
- }
- for($i=0;$i<$this->textNum;$i ){
- $angle=mt_rand(-1,1)*mt_rand(1,20);
- imagettftext( $this->image,$this->fontSize,$angle,5 $i*floor($this->fontSize*1.3),floor($this->height*0.75),$this-> randFontColor,$this->fontFamily,$textArray[$i]);
- }
- }
-
- //@生成干扰点
- public function createNoisePoint(){
- for ($i=0;$i<$this->noisePoint;$i ){
- $pointColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)) ;
- imagesetpixel($this->image,mt_rand(0,$this->width),mt_rand(0,$this->height),$pointColor);
- }
-
- }
-
- //@产生干扰线
- 공개 함수 createNoiseLine(){
- for($i=0;$i<$this->noiseLine;$i ) {
- $lineColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),20);
- imageline($this->image,0,mt_rand(0,$this->width) ,$this->width,mt_rand(0,$this->height),$lineColor);
- }
- }
-
- //@扭曲文字
- 공용 함수istortionText( ){
- $this->distortionImage=imagecreatetruecolor($this->width,$this->height);
- imagefill($this->distortionImage,0,0,$this-> randBgColor);
- for($x=0;$x<$this->width;$x ){
- for($y=0;$y<$this->height;$y ) {
- $rgbColor=imagecolorat($this->image,$x,$y);
- imagesetpixel($this->distortionImage,(int)($x sin($y/$this-> ;높이*2*M_PI-M_PI*0.5)*3),$y,$rgbColor);
- }
- }
- $this->image=$this->distortionImage;
- }
-
- //@生成验证码图文
- public function createImage(){
- $this->initImage(); //创建基本图文
- $this->createText(); //출제验证码字符
- if($this->distortion){$this->distortionText();} //扭曲文字
- $this->createNoisePoint(); //产生干扰点
- $this->createNoiseLine(); //产生干扰线
- if($this->showBorder){imageretangle($this->image,0,0,$this->width-1,$this->height-1,$ this->randFontColor);} //添加边框
- imagepng($this->image);
- imagedestroy($this->image);
- if($this->distortion) {imagedestroy($this->$distortionImage);}
- return $this->textContent;
- }
- }
- ?>
- code.php//new 一个对象,负责图 Pictures 创建以及验证码文本写入session
- session_start();
- header("Content-type:image/png");
- include('checkCode.class .php');
- $captcha5=new Captcha();
-
- //@设置验证码宽島
- //$captcha5->setWidth(200);
-
- //@设置验证码고도
- //$captcha5->setHeight(50);
-
- //@设置字符个数
- $captcha5->setTextNumber(4);
-
- //@设置字符颜color
- //$captcha5->setFontColor('#ffffff');
-
- //@设置字符颜color
- //$captcha5-> setFontSize(25);
-
- //@设置字体
- $captcha5->setFontFamily('c:\windows\fonts\comic.TTF');
-
- //@设置语言
- $captcha5->setTextLang('en');
-
- //@设置背景颜color
- //$captcha5->setBgColor('#000000');
-
- //@设置是否扭曲
- //$captcha5->setDistortion(true);
-
- //@设置是否显示边框
- $captcha5-> setShowBorder(true);
-
- //输流验证码
- $code=$captcha5->createImage();
- $_SESSION['captchaCode']['content']=$code;
- //$_SESSION['captchaCode']['time']=microtime();
- ?>
-
-
- 复代码
-
-
로그인하세요. php//登陆页화면
|