新手一个php 连接mysql 类的问题请教
<?phpClass mysql_class //类的开始
{
public $db= "localhost";//数据库地址;
public $dbname = "root";//用户名;
public $dbpwd = "";//密码;
public $dbtable = "data";//使用的数据库
public $conn; //数据库连接;
public $result; //结果集
public $mysql; //执行的mysql
public $row; //结果集中找数据
function linkconn() {//这个类方法是开始一个conn连接,然后开始选择数据库
$this->conn = mysql_connect($this->db,$this->dbname,$this->dbpwd) or die ("连接失败");
mysql_select_db($this->dbtable,$this->conn);
}
function getresule() //这个是得到一个结果集
{
$this->result = mysql_query($this->mysql,$this->conn);
}
function getrow() {//创建一个向前的结果集指针
$this->row = mysql_fetch_array($this->result);
return $this->row;
}
function closedatabase()
{
mysql_close($this->conn);
}
}
$db=new mysql_class();
?>
从网上找的代码
为什么这个类没有执行呢?随便用个密码用户名也不会报错?从网上找的代码