我这个ajax代码哪里不对了?

WBOY
Release: 2016-06-23 13:15:12
Original
953 people have browsed it

就是用ajax检测用户名  不知道为什么弹不出来yes或者no  而是弹了下面一个东西


数据库里面也有东西


前台页面 

<!DOCTYPE html><html><head>  <meta charset="utf-8">	<title></title>  <script type="text/javascript">  	function ajax(url,funsucc){  var oAjax=new XMLHttpRequest();            oAjax.open('GET',url,true);            oAjax.send();                oAjax.onreadystatechange=function(){              if(oAjax.readyState==4){                if(oAjax.status==200){                  funsucc(oAjax.responseText);                }           }}}  </script>	<script type="text/javascript">	window.onload=function(){		var oTxt=document.getElementById('txt1');		oTxt.onblur=function(){			ajax("chaxun.php?id="+oTxt.value,function(str){	        alert(str);	        });		}			}	</script></head><body><form>	<input type="text" id="txt1" name="user"></form></body></html>
Copy after login


后台(chaxun.php)
<?php$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");$id=$_GET["id"];$stmt=$pdo->prepare("select * from user WHERE username=?");$stmt->execute(array($id));$res=$stmt->fetchall();$result=mysql_affected_row($res);if($result==-1){	echo "yes";}else{	echo "no";}?>
Copy after login


回复讨论(解决方案)

我知道mysql_affected_row写错了  我改成mysql_affected_rows还是不行

弹出的是 xdebug 的错误报告
指出 chaxun.php 第 7 行 $result=mysql_affected_row($res); 中的 mysql_affected_row 是未定义函数

正确的写法是:mysql_affected_row s
不过你是用 PDO 连接并操作数据库的,用了 mysql_affected_rows 也是错误的
即便你是使用 mysql 扩展操作数据库,mysql_affected_rows 也对 select 指令无效

所以 $result=mysql_affected_row($res); 应删去
if($result==-1){
改为
if(! $res){

$stmt->fetchall() 返回的是数组,如果没有查到数据的话,$res 就是空数组

弹出的是 xdebug 的错误报告
指出 chaxun.php 第 7 行 $result=mysql_affected_row($res); 中的 mysql_affected_row 是未定义函数

正确的写法是:mysql_affected_row s
不过你是用 PDO 连接并操作数据库的,用了 mysql_affected_rows 也是错误的
即便你是使用 mysql 扩展操作数据库,mysql_affected_rows 也对 select 指令无效

所以 $result=mysql_affected_row($res); 应删去
if($result==-1){
改为
if(! $res){

$stmt->fetchall() 返回的是数组,如果没有查到数据的话,$res 就是空数组



谢谢了版主 我基础太差 要好好看看
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template