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

。在学习的过程中Sqlhelper类中的连接总是不正确

php 搞代码 4年前 (2022-01-24) 20次浏览 已收录 0个评论

求助。在学习的过程中Sqlhelper类中的连接总是不正确
学习写一个登陆小程序。三个文件SqlHelper.class.php,loginProcess.php,AdminService.class.php

我用的是zend开发工具。运行代码的时候总是报:Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in C:\wamp\www\empManage\SqlHelper.class.php on line 20

我猜想是类实例化之后构造函数的问题。
但是总是无法解决。希望有人帮我看下。非常感谢

SqlHelper.class.php

<br /><?php<br /> class SqlHelper{<br /> 	//声明类成员<br /> 	  public $conn;<br /> 	  public $dbname="emp";<br /> 	  public $username="root";<br /> 	  public $password="";<br /> 	  public $host="localhost";<br /> 	  //构造函数<br /> 	  public function _construct(){<br /> 	  	$this->conn=mysql_connect($this->host,$this->username,$this->password);<br /> 	  	if (!$this->conn) {<br /> 	  		die("连接失败".mysql_error());<br /> 	  	}<br /> 	  	mysql_select_db($this->dbname<p style="color:transparent">本文来源gao!%daima.com搞$代*!码$网3</p><strong>搞代gaodaima码</strong>,$this->conn);<br /> 	  }<br /> 	  <br /> 	  // 执行dql语句<br /> 	  public function excute_dql($sql){<br /> 	  	$res=mysql_query($sql,$this->conn) or die(mysql_error());<br /> 	  	return  $res;<br /> 	  }<br /> 	  <br /> 	  //执行dml语句<br /> 	  public function excute_dml($sql){<br /> 	  	$b=mysql_query($sql,$this->conn);<br /> 	  	if (!$b){<br /> 	  		return 0;<br /> 	  	}else{<br /> 	  		if(mysql_affected_rows($this->conn)>0){<br /> 	  			return 1;//表示执行OK<br /> 	  		} else{<br /> 	  			return 2;//表示执行没有行受到影响<br /> 	  		}<br /> 	  		<br /> 	  	}<br /> 	  <br /> 	  	<br /> 	  }<br /> 	  //关闭数据库连接<br /> 	  public function close_connect(){<br /> 	  	if (!empty($this->conn)){ <br /> 	  		mysql_close($this->conn);<br /> 	  	}<br /> 	  }<br /> }<br /> ?><br />

AdminService.class.php:

<br /><?php<br />  require_once 'SqlHelper.class.php';<br />  class AdminService{<br />  	public function checkAdmin($id,$password){<br />  		$sql="select * from admin where id=$id";<br />  		//创建一个SqlHelper对象<br />  		$sqlHelper=new SqlHelper();<br />  		$res=$sqlHelper->excute_dql($sql);//我把这个结果给你,你怎么处理是你的事情<br />  		if ($row=mysql_fetch_assoc($res)){<br />  			if ($password==$row['password']){<br />  				return $row['name'];<br />  			}<br />  		}<br />  		//关闭资源<br />  		mysql_free_result($res);<br />  		$sqlHelper->close_connect();<br />  		//关闭连接<br />  		return "";<br />  	}<br />  }<br />?><br /><br />

loginProcess.php
<?php
require_once ‘AdminService.class.php’;
$id=$_POST[‘id’];
$password=$_POST[‘password’];

$adminService=new AdminService();
if($name=$adminService->checkAdmin($id,$password)){
header(“Location:empMain.php?name=$name”);
exit();
} else{
header(“Location:login.php?errno=1”);
exit();
}

——解决方案——————–


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:。在学习的过程中Sqlhelper类中的连接总是不正确

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

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

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

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