• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given i解决办法

php 搞代码 3年前 (2022-01-23) 14次浏览 已收录 0个评论

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given i
$sql = “select count(uid) as user from user_table where uid='”.$this->username.”‘and password='”.md5($this->password,self::USERCONST).”‘”;
$query = $this->database->setSQL($sql);
if($row = $this->database->select_array($query)){
echo $row[“user”];
有问题 查询的结果只有一条记录为什么 不能读呢 如果user==1就证明有这个用户 1以上就重复了
他的输出结果是:
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in F:\wamp\www\user\DB\MySql.php on line 27
请求助

PHP code

<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?phpclass UserEntity{    private $username;    private $password;    const USERCONST = "Huang520Yu520Hong";                    //常量 用户名+常量再加密往数据库里插    private $database;    function __construct($u,$p){        include("../DB/MySql.php");        $this->database = new MySql();        $this->username = $u;        $this->password = $p;    }    function register(){        $pmd5 = md5($this->password.self::USERCONST);        $sql = "insert into user_table (username,password) values('".$this->username."','".$pmd5."')";        $database->setSQL($sql);    }    function logout(){        echo "注销";    }    function login(){        echo "登录";    }    function usercheck(){                                                                                    //密码加常量        $sql = "select count(uid) as user from user_table where uid='".$this->username."'and password='".md5($this->password,self::USERCONST)."'";        $query = $this->database->setSQL($sql);        if($row = $this->database->select_array($query)){            echo $row["user"];        }    }}?>
PHP code

<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php class MySql{     private $host;     private $username;     private $password;     private $database;     function __construct(){        $this->host = "localhost";        $this->username = "root";        $this->password = "";        $this->database = "bkqs";        $this->mysqlconnection();     }     function mysqlconnection(){        $connection = mysql_connect($this->host,$this->username,$this->password) or die ("连接数据库失败");        mysql_select_db($this->database,$connection) or die ("打开数据库失败");        mysql_query("set names 'GBK'");     }     function setSQL($sql){        return mysql_query($sql);     }     function select_array($query){         return mysql_fetch<a>2本文来源gao*daima.com搞@代#码&网6</a><pre>搞gaodaima代码

_array($query); } function select_object($query){ return mysql_fetch_object($query); } function close(){ return mysql_close(); } }?>

——解决方案——————–
sql语句执行失败了。可以在你的setSQL()方法中加上错误提示。or die(mysql_error());就知道错在哪了。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given i解决办法
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址