首页 相关文章 php入门mysql分页dbClass类

php入门mysql分页dbClass类

。?php
/**
* a class use to connect the MySQL database and do some query
* wayne ,Mar 11, 2002
*/
class dbClass {
var $hostName = "localhost";
var $dbName = "exhibit";
var $Login = "wayne";
var $Password = "xiao";
var $conn;
var $result;

function dbClass(){
$this-conn = mysql_connect("$hostName","$this-Login","$this-Password");
mysql_select_db("$this-dbName", $this-conn);
}

function executeQuery($sql){
$this-result = mysql_query("$sql",$this-conn);
return $this-result;
}

[ 查看全文 ]

2016-02-19 标签:

php入门mysql分页dbClass类的相关文章

手机页面
收藏网站 回到头部