PHP & Others

엑셀 excel 2007 포맷

페이지 정보

본문

<? 
header("Content-type: application/vnd.ms-excel"); 
header("Content-Disposition: attachment; filename=엑셀.xls"); 
header("Content-Description: PHP4 Generated Data"); 
header("Content-charset=euc-kr"); 

echo"<?xml version='1.0' encoding='euc-kr'?>"; 
?> 

<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" 
 xmlns:o="urn:schemas-microsoft-com:office:office" 
 xmlns:x="urn:schemas-microsoft-com:office:excel" 
 xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" 
 xmlns:html="http://www.w3.org/TR/REC-html40">  
 <Worksheet ss:Name="aa"> 
  <Table> 
    <Row> 
    <Cell><Data ss:Type="String">a11</Data></Cell> 
    <Cell><Data ss:Type="String">a12</Data></Cell> 
    <Cell><Data ss:Type="String">a13</Data></Cell> 
    </Row> 
    <Row> 
    <Cell><Data ss:Type="String">a21</Data></Cell> 
    <Cell><Data ss:Type="String">a22</Data></Cell> 
    <Cell><Data ss:Type="String">a23</Data></Cell> 
    </Row> 
  </Table> 
 </Worksheet> 
 <Worksheet ss:Name="bb"> 
  <Table> 
    <Row> 
    <Cell><Data ss:Type="String">b11</Data></Cell> 
    <Cell><Data ss:Type="String">b12</Data></Cell> 
    <Cell><Data ss:Type="String">b13</Data></Cell> 
    </Row> 
    <Row> 
    <Cell><Data ss:Type="String">b21</Data></Cell> 
    <Cell><Data ss:Type="String">b22</Data></Cell> 
    <Cell><Data ss:Type="String">b23</Data></Cell> 
    </Row> 
  </Table> 
 </Worksheet> 
</Workbook>

관련자료

등록된 댓글이 없습니다.
Today's proverb
세상에서 가장 현명한 사람은 모든 사람으로부터 배울 수 있는 사람이요, 가장 사랑받는 사람은 모든 사람을 칭찬하는 사람이요, 가장 강한 사람은 자신의 감정을 조절할 줄 아는 사람이다. (탈무드)