?php
在河?xùn)|等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都營(yíng)銷網(wǎng)站建設(shè),外貿(mào)營(yíng)銷網(wǎng)站建設(shè),河?xùn)|網(wǎng)站建設(shè)費(fèi)用合理。
$Con?=?mysql_connect(.....);
//數(shù)據(jù)庫(kù)庫(kù)連接你自己寫
echo?'tabletr';
$i?=?0;
$Sql?=?mysql_query('select?字段名稱?from?表名稱');
while(?$Rs?=?mysql_fetch_attay(?$Sql?)?)?{
$i++;
echo?'td'?.?$Rs['字段名稱'].?'/td';
if?(?$i?%?3?==?0?)?{
echo?'/trtr';
}
}
echo?'/tr/table';
根據(jù)下列編碼程序可以。
1./*** 批量導(dǎo)出數(shù)據(jù)* @param $arr 從數(shù)據(jù)庫(kù)查詢出來(lái),即要導(dǎo)出的數(shù)據(jù)* ?$name excel表歌名*/
2.function expExcel($arr,$name){?require_once 'PHPExcel.php';
3. //實(shí)例化?$objPHPExcel = new PHPExcel();?/*右鍵屬性所顯示的信息*/
4.$objPHPExcel-getProperties()-setCreator("zxf") ?//?-setLastModifiedBy("zxf") ?//最后一? -setTitle('數(shù)據(jù)EXCEL導(dǎo)出') ?//標(biāo)題-setSubject('數(shù)據(jù)EXCEL導(dǎo)出') //主題setDescription('導(dǎo)出數(shù)據(jù)') ?//描setKeywords("excel") ? //標(biāo)記setCategory("result file"); ?//類別
5. //設(shè)置當(dāng)前的表格??$objPHPExcel-setActiveSheetIndex(0);// 設(shè)置表格第一行顯示內(nèi)容$objPHPExcel-getActiveSheet()? -setCellValue('A1', '業(yè)主姓名')?-setCellValue('B1', '密碼')-setCellValue('C1', '手機(jī)號(hào)碼'? -setCellValue('D1', '地址')
6.//設(shè)置第一行為紅色字體?-getStyle('A1:D1')-getFont()-getColor()-setARGB(PHPExcel_Style_Color::COLOR_RED);$key = 1;?/*以下就是對(duì)處理Excel里的數(shù)據(jù)。
主要的寫出來(lái)啊
$query="select
*
from
student
where
id=01";
$res=my_sql_query($query);
$date=array();//保存得到的數(shù)據(jù)
where($row=mysql_fetch_assoc($res)){
$date=$row['填寫你表的字段'];
}
下面循環(huán)遍歷$date輸出到table就可以了啊
你是什么數(shù)據(jù)庫(kù),不同數(shù)據(jù)庫(kù)調(diào)用方法也不同,比如mysql,一般寫法,
?php
$link=mysql_connect("localhost","root","root");//連接數(shù)據(jù)庫(kù)
mysql_select_db("庫(kù)名");//選擇庫(kù)
$sql="select?name,sex,age?from?user";
$rs=mysql_query($sql);
while($row=mysql_fetch_object($rs)){?
trtd?php?echo?$row['name']?/tdtd?php?echo?$row['sex']?/tdtd?php?echo?$row['age']?/td/tr
?php?}?