PHP 把資料表列出來的東西匯出成execle格式

2022-05-06 16:42:10 字數 1283 閱讀 4970

<?php

這兩行最重要

header("content-disposition:attachment;filename=test_data.xls");//

這兩行最重要,一定要寫上

$tx='參會登錄檔';

echo

$tx."\n\n";

echo "個人資訊\t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo "同行人員\t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo "聯絡人員\t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \t";

echo " \n";

echo "編號\t";

echo "姓名\t";

echo "性別\t";

echo "單位型別\t";

echo "單位名稱\t";

echo "職務\t";

echo "辦公**\t";

echo "移動**\t";

echo "傳真\t";

echo "郵箱\t";

echo "郵寄位址\t";

echo "郵編\t";

echo "姓名\t";

echo "性別\t";

echo "職務\t";

echo "**\t";

echo "郵箱\t";

echo "姓名\t";

echo "性別\t";

echo "職務\t";

echo "**\t";

echo "郵箱\t\n";

$i=0;

$result=mysql_query("select * from zhuce order by id desc");

while($row=mysql_fetch_array($result))

?>

本熱測試過,全部通過

PHP 把資料表列出來的東西匯出成execle格式

tx 參會登錄檔 echo tx.n n echo 個人資訊 t echo t echo t echo t echo t echo t echo t echo t echo t echo t echo t echo t echo 同行人員 t echo t echo t echo t echo t ...

mysql檢視使用者列表 列出Mysql資料庫

1.前言 本文主要講解如何在linux系統上檢視mysql所有資料庫列表。在管理mysql資料庫伺服器時,最常見的任務之一就是熟悉環境。這包括檢視駐留在伺服器上的資料庫 檢視特定資料庫的表或檢視關於使用者帳戶及其特權的資訊等任務。本教程解釋如何通過命令列檢視mysql或mariadb伺服器中的所有資...

mysql建立資料表列子 MySQL 建立資料表

mysql 建立資料表 建立mysql資料表需要以下資訊 表名 表欄位名 定義每個表字段 語法以下為建立mysql資料表的sql通用語法 create table table name column name column type 以下例子中我們將在 runoob 資料庫中建立資料表runoob ...