mysql配置文件编写

实例:

首先建立 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

  

?>

转载于:https://www.cnblogs.com/sjxx/p/5582390.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值