PHP学会网 php培训网 PHP暑期培训 PHP寒假培训 PHP假期培训 » 入门和基础知识 » 用php将mysql数据表转换为excel文件格式
本页主题: 用php将mysql数据表转换为excel文件格式 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

meiwang12363

该用户目前不在线
级别: 中级程序员
精华: 1
发帖: 1069
威望: 0 点
金钱: 0 PYMB
贡献值: 0 点
在线时间:8(小时)
注册时间:2007-04-26
最后登录:2007-09-04

用php将mysql数据表转换为excel文件格式



?php
// define database parameter
$DB_Server = "localhost";
$DB_Username = "root";
$DB_Password = "123";
$DB_DBName = "windlike";
$DB_TBLName = "bank";
// connect database
$Connect = @mysql_connect($DB_Server, $DB_Username, $DB_Password) or die("Couldn't connect.");
$Db = @mysql_select_db($DB_DBName, $Connect) or die("Couldn't select database.");
// set header infomation
$file_type = "vnd.ms-excel";
$file_ending = "xls";
header("Content-Type: application/$file_type");
header("Content-Disposition: attachment; filename=$DB_TBLName.$file_ending");
header("Pragma: no-cache");
header("Expires: 0");
// export data to excel
$now_date = date('Y-m-d H:i');
$title = "[url=javascript:;]数据库[/url]名:$DB_DBName, 数据表:$DB_TBLName, 备份日期:$now_date";
echo("$title\n");
$sql = "SELECT * FROM $DB_TBLName";
$ALT_Db = @mysql_select_db($DB_DBName, $Connect) or die("Couldn't select database");
$result = @mysql_query($sql,$Connect) or die(mysql_error());
$sep = "\t";
for ($i = 0; $i  mysql_num_fields($result); $i++) {
    echo mysql_field_name($result,$i) . "\t";
}
print("\n");
$i = 0;
while($row = mysql_fetch_row($result)) {
    $schema_insert = "";
    for($j=0; $jmysql_num_fields($result);$j++) {
        if(!isset($row[$j]))
            $schema_insert .= "NULL".$sep;
        elseif ($row[$j] != "")
            $schema_insert .= "$row[$j]".$sep;
        else
            $schema_insert .= "".$sep;
    }
    $schema_insert = str_replace($sep."$", "", $schema_insert);
    $schema_insert .= "\t";
    print(trim($schema_insert));
    print "\n";
    $i++;
}
return (true);
?>
顶端 Posted: 2007-08-20 09:32 | [楼 主]
PHP学会网 php培训网 PHP暑期培训 PHP寒假培训 PHP假期培训 » 入门和基础知识

时:11-23 04:28 Copyright © 2006 phpwhy.com 权
ICP05060669

曳息 -