当前位置: 移动技术网 > IT编程>开发语言>PHP > 一个MYSQL操作类

一个MYSQL操作类

2019年05月16日  | 移动技术网IT编程  | 我要评论
复制代码 代码如下:

<?php
class db{    
var $host_addr = "localhost";
var $host_user = "root";
var $host_psw  = "123";
var $db_name   = "test";

var $link_id;
var $query_id;
var $numrow;

function db(){
     $this->link_id = @mysql_connect($this->host_addr,$this->host_user,$this->host_psw);
  if($this->link_id){
      @mysql_select_db($this->db_name,$this->link_id) or $this->halt("数据库连接失败!");
  }else{
      $this->halt("连接服务器失败!");
   return false;
  }
  return $this->link_id;
}
function query($sql){
     $this->query_id = @mysql_query($sql,$this->link_id);
  if($this->query_id){
      return $this->query_id;
  }else{
      $this->halt("sql error::");
   return false;
  }
}
function numrow(){
     return $this->numrow = @mysql_num_rows($this->query_id);
}
function close(){
     return @mysql_close($this->link_id);
}
function halt($msg){
     echo "<font color=\"#ff0000\">".$msg."</font>";
}

}
?>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网