熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

通過table標簽,PHP輸出EXCEL的實現方法

2022-06-13   來源: PHP編程 
以下是利用table標簽對PHP輸出EXCEL的實現代碼進行了介紹需要的朋友可以過來參考下  

  關鍵代碼

復制代碼 代碼如下:
<?php
 header("Contenttype:application/vndmsexcel");
 header("ContenDisposition:filename=hpxlsx");
 ?>

  
第一句是用來聲明文件內容的格式第二局是用來修改文件名的如果沒有第二個語句的話生成的文件將是沒有後綴名的
實現代碼

復制代碼 代碼如下:
<meta httpequiv="ContentType" content="text/html; charset=utf" />
<?php
 header("Contenttype:application/vndmsexcel");
 header("ContenDisposition:filename=hpxlsx");
 ?>
 <table width="" border="">
  <tr>
    <td colspan="" align="center">i love you</td>
  </tr>
  <tr>
    <td>編號</td>
    <td>姓名</td>
    <td>年齡</td>
  </tr>
  <tr>
    <td></td>
    <td>test</td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td>test</td>
    <td></td>
  </tr>
</table>

  

當然我們很自然的想到了是否可以把數據庫的內容也通過這種方式輸出到表格呢?
答案是可以的
實現代碼

復制代碼 代碼如下:
<meta httpequiv="ContentType" content="text/html; charset=gbk" />
<?php
header("Contenttype:application/vndmsexcel");
header("ContentDisposition:filename=qianshouxls");
mysql_connect("localhost""root""");
mysql_select_db("test");
mysql_query("SET NAMES GBK");
$query="select * from city ";
$r=mysql_query($query);
?>
<table width="" border="">
  <tr>
    <td colspan="" align="center">城市列表</td>
  </tr>
  <tr>
    <td align="center">id</td>
    <td align="center">p_id</td>
    <td align="center">name</td>
  </tr>
  <?php
  while($row=mysql_fetch_assoc($r)){
   ?>
  <tr>
    <td><?php echo $row[id] ?></td>
    <td><?php echo $row[p_id] ?></td>
    <td><?php echo $row[c_name]?></td>
  </tr>
  <?php
  }
   ?>
</table>

  


From:http://tw.wingwit.com/Article/program/PHP/201311/20901.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.