码迷,mamicode.com
首页 > 数据库 > 详细

mysql配置文件编写

时间:2016-06-13 23:33:26      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:

实例:

首先建立 mysql的配置文件  dbconfig.php

技术分享
<?php
    $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配置文件编写

标签:

原文地址:http://www.cnblogs.com/sjxx/p/5582390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!