当前位置:Gxlcms > 数据库问题 > mysql配置文件编写

mysql配置文件编写

时间:2021-07-01 10:21:17 帮助过:2人阅读

$phpexcel=array( "host"=>‘localhost‘,//127.0.0.1 "username"=>"root",//用户名 "password"=>"123",//密码 "database"=>"PHPExcel",//数据库名 "charset"=>"utf8"//编码 ); ?> View Code

php操作mysql文件

技术分享
<?php
    require dirname(__FILE__)."/dbconfig.php";//引入配置文件
    class db(//mysql操作类
      public $conn=null;//初始化
     public function _construct($config){
//连接数据库
        $this->conn=mysql_connect($config["host"],$config["username"],$config["passwork"]or die(mysql_error));//连接数据库
mysql_select_db($config["database"],$this->conn)or die(mysql_error));//选择数据库
mysql_query("set names",$config["charset"]or die(mysql_error());//设定mysql编码
    }
/**
**根据传入的sql语句 查询mysql结果集
**/
public function getResult($sql){
$resource=mysql_query($sql,$this->conn)or die(mysql_error());//查询SQL语句
$res=array();
while(($row=mysql_fetch_assoc($resource))!=false){
$res[]=$row;
}
return $res;
}
?>
View Code

 

读取数据并输出本地文件

<?php

  

?>

mysql配置文件编写

标签:

人气教程排行