Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial php Ajax 无法登陆

php Ajax 无法登陆

Jun 23, 2016 pm 02:09 PM

无法注册,不能弹出注册成功的窗口,数据库没有增加新用户,
register.php

 <table border="0" align="center" cellpadding="0" cellspacing="0">		  <tr><td><p>注册名称:</p></td><td><input id="regname" name="regname" type="text" class="txt" /></td><td><div id="namediv" class="regdiv">  名称由字母及下划线组成</div></td></tr>		  <tr><td><p>注册密码:</p></td><td><input id="regpwd1" name="regpwd1" type="password" class="txt" /></td><td><div id="pwddiv1" class="regdiv">  请输入密码</div></td></tr>		  <tr><td><p>确认密码:</td><td><input id="regpwd2" name="regpwd2" type="password" class="txt" /></td><td><div id="pwddiv2" class="regdiv">  确认密码</div></td></tr>          <tr><td colspan="3"><a id="morebtn">更多.......</a><input id="chknm" name="chknm" type="hidden" value=""  /></td></tr>	</table>		      <div id="morediv" style="display:none;padding:0 0 0 57px;">	<hr />	<table border="0" cellpadding="0" cellspacing="0" id="regfm">	<tr><td style="width:70px;">密保问题:</td><td><input id="question" name="question" type="text"  /></td></tr>	<tr><td>密保答案:</td><td><input id="answer" name="answer" type="text" /></td></tr>	<tr><td>电子邮件:</td><td><input type="text" name="xuehao" id="xuehao" /></td></tr>	<tr><td>QQ号码:</td><td><input type="text" name="xuehao" id="xuehao" /></td></tr>	<tr><td>手机号码:</td><td><input type="text" name="xuehao" id="xuehao" /></td></tr>    	<tr><td>真实姓名:</td><td><input type="text" name="relname" id="relname" /></td></tr>	<tr><td>河海学号:</td><td><input type="text" name="xuehao" id="xuehao" /></td></tr>	<tr><td style="height:40px;">性别:</td><td>         		<select id="sex" name="sex">		<option value='男' selected="selected">男</option>		<option value='女'>女</option>	</select></td></tr>	<tr><td style="height:40px;">出生日期:</td><td>        <select id='year' name='year' style="width:70px;">		<option value="<?php echo date('Y'); ?>" selected="selected"><?php echo date('Y'); ?></option>	<?php	for($i=1900;$i<2024;$i++){	?>		<option value="<?php echo $i; ?>"><?php echo $i; ?></option>	<?php	}	?>	</select>  年  <select id="month" name="month">	<?php	for($i=1;$i<=12;$i++){	?>		<option value="<?php echo $i; ?>"><?php echo $i; ?></option>	<?php	}	?>	</select>  月  <select id="day" name="day">	<?php	for($i=1;$i<=31;$i++){	?>		<option value="<?php echo $i; ?>"><?php echo $i; ?></option>	<?php	}	?>	</select>  日  </td></tr>	</table>
Copy after login

register.js
// JavaScript Documentfunction $(id){	return document.getElementById(id);}window.onload = function(){	$('regname').focus();	var cname1,cname2,cpwd1,cpwd2;	//验证用户名	$('regname').onkeyup = function (){		name = $('regname').value;		cname2 = '';		if(name.match(/^[a-zA-Z_]*/) == ''){			$('namediv').innerHTML = '<font color=red>必须以字母和下划线开头</font>';			cname1 = '';		}else if(name.length <= 3){			$('namediv').innerHTML = '<font color=red>注册名称必须大于三位</font>';			cname1 = '';		}else{			$('namediv').innerHTML = '<font color=green>注册名称符合标准</font>';			cname1 = 'yes';		}		chkreg();	}	$('regname').onblur = function(){		name = $('regname').value;		if(cname1 == 'yes'){			xmlhttp.open('get','chkname.php?name='+name,true);			xmlhttp.onreadystatechange = function(){				if(xmlhttp.readyState == 4){					if(xmlhttp.status == 200){						var msg = xmlhttp.responseText;						if(msg == '1'){							$('namediv').innerHTML="<font color=green>用户名可以使用!</font>";							cname2 = 'yes';						}else if(msg == '2'){							$('namediv').innerHTML="<font color=red>用户名被占用!</font>";							cname2 = '';						}else{							$('namediv').innerHTML="<font color=red>"+msg+"</font>";							cname2 = '';						}					}				}			}			xmlhttp.send(null);			chkreg();		}	}	$('regpwd1').onkeyup = function(){		pwd = $('regpwd1').value;		pwd2 = $('regpwd2').value;		if(pwd.length < 6){			$('pwddiv1').innerHTML = '<font color=red>密码最少需6位!</font>';			cpwd1 = '';		}else if(pwd.length >= 6 && pwd.length < 12){			$('pwddiv1').innerHTML = '<font color=green>密码符合要求。密码强度:弱</font>';			cpwd1 = 'yes';		}else if((pwd.match(/^[0-9]*$/)!=null) || (pwd.match(/^[a-zA-Z]*$/) != null )){			$('pwddiv1').innerHTML = '<font color=green>密码符合要求。密码强度:中</font>';			cpwd1 = 'yes';		}else{			$('pwddiv1').innerHTML = '<font color=green>密码符合要求。密码强度:强</font>';			cpwd1 = 'yes';		}		if(pwd2 != '' && pwd != pwd2){			$('pwddiv2').innerHTML = '<font color=red>两次密码不一致</font>';			cpwd2 = '';		}else if(pwd2 != '' && pwd == pwd2){			$('pwddiv2').innerHTML = '<font color=green>密码输入正确</font>';			cpwd2 = 'yes';		}		chkreg();	}	$('regpwd2').onkeyup = function(){		pwd1 = $('regpwd1').value;		pwd2 = $('regpwd2').value;		if(pwd1 != pwd2){			$('pwddiv2').innerHTML = '<font color=red>两次密码不一致!</font>';			cpwd2 = '';		}else{			$('pwddiv2').innerHTML = '<font color=green>密码输入正确!</font>';			cpwd2 = 'yes';		}		chkreg();	}	function chkreg(){		if((cname1 == 'yes') && (cname2 == 'yes') && (cpwd1 == 'yes') && (cpwd2 == 'yes')){			$('regbtn').disabled = false;		}else{			$('regbtn').disabled = true;		}	}	$('morebtn').onclick = function(){		if($('morediv').style.display == ''){			$('morediv').style.display = 'none';		}else{			$('morediv').style.display = '';		}	}	//正式注册	$('regbtn').onclick = function(){		name = $('regname').value;		pwd = $('regpwd1').value;		question1 = $('question').value;		answer1 = $('answer').value;		realname1 = $('realname').value;		xuehao1 = $('xuehao').value;		email1 = $('email').value;		qq1 = $('qq').value;		tel1 = $('tel').value;		sex1 = $('sex').value;		birthday1 = $('year').value+'-'+$('month').value+'-'+$('day').value;				url = 'register_chk.php?name='+name+'&pwd='+pwd;		url += '&question='+question1+'&answer='+answer1+'&email='+email1;		url += '&qq='+qq1+'&tel='+tel1;		url += '&realname='+realname1+'&xuehao='+xuehao1+'&sex='+sex1+'&birthday='+birthday1;		xmlhttp.open('get',url,true);		xmlhttp.onreadystatechange = function(){			if(xmlhttp.readyState == 4){				if(xmlhttp.status == 200){					msg = xmlhttp.responseText;					if(msg == '1'){						top.opener.location.reload();						alert('注册成功!');												location='yhzx.php';					}else{						alert(msg);					}				}			}		}		xmlhttp.send(null);	}}
Copy after login

register_chk.php
<?php	session_start();	header('Content-Type:text/html;charset=utf-8');	include_once 'conn/conn.php';	include_once '../config.php';	$reback = '0';	//echo $_GET['headgif'];		$sql = "insert into tb_users(name,pwd,question,answer,realname,xuehao,sex,tel,email,qq,birthday) values('".trim($_GET['name'])."','".md5(trim($_GET['pwd']))."','".$_GET['question']."','".$_GET['answer']."','".$_GET['realname']."','".$_GET['xuehao']."','".$_GET['sex']."','".$_GET['tel']."','".$_GET['email']."','".$_GET['qq']."','".$_GET['birthday'].'")";	$num = $conne->uidRst($sql);	if($num == 1){		$_SESSION['name'] = $_GET['name'];		$reback = '1';	}else{		$reback = $conne->msg_error();	}	echo $reback;?>
Copy after login

chk_name.php
<?phpsession_start();include_once "conn/conn.php";$reback = '0';$sql = "select * from tb_member where name='".$_GET['name']."'";$num = $conne->getRowsNum($sql);if($num == 1){	$reback = '2';}else if($num == 0){	$reback = '1';}else{	$reback = $conne->msg_error();}echo $reback;?>
Copy after login


回复讨论(解决方案)

代码太多,先告诉我们 提交上去的数据是否正确 返回结果又是什么?

你真实够可以的,连代码都不给全,怎么帮你查错?

我靠,js啊

我是来学习的

解决问题自己不急 你当比人来给你急啊 代码都不全  我擦
你可以直接抛开 ajax 先用php注册看能不能成功 在看下js发的数据是不是完整和对的

找不出毛病,就怪我代码没给全,我才擦呢,再也不来了,一堆没耐心的家伙,态度越来越差了,什么东西都没解答出来吃干饭,恶心死了。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

See all articles