时间:2021-07-01 10:21:17 帮助过:13人阅读
class SqlHelper{
//声明类成员
public $conn;
public $dbname="emp";
public $username="root";
public $password="";
public $host="localhost";
//构造函数
public function _construct(){
$this->conn=mysql_connect($this->host,$this->username,$this->password);
if (!$this->conn) {
die("连接失败".mysql_error());
}
mysql_select_db($this->dbname,$this->conn);
}
// 执行dql语句
public function excute_dql($sql){
$res=mysql_query($sql,$this->conn) or die(mysql_error());
return $res;
}
//执行dml语句
public function excute_dml($sql){
$b=mysql_query($sql,$this->conn);
if (!$b){
return 0;
}else{
if(mysql_affected_rows($this->conn)>0){
return 1;//表示执行OK
} else{
return 2;//表示执行没有行受到影响
}
}
}
//关闭数据库连接
public function close_connect(){
if (!empty($this->conn)){
mysql_close($this->conn);
}
}
}
?>
require_once 'SqlHelper.class.php';
class AdminService{
public function checkAdmin($id,$password){
$sql="select * from admin where id=$id";
//创建一个SqlHelper对象
$sqlHelper=new SqlHelper();
$res=$sqlHelper->excute_dql($sql);//我把这个结果给你,你怎么处理是你的事情
if ($row=mysql_fetch_assoc($res)){
if ($password==$row['password']){
return $row['name'];
}
}
//关闭资源
mysql_free_result($res);
$sqlHelper->close_connect();
//关闭连接
return "";
}
}
?>