PHP 엑셀만들기 기본 샘플소스
마스터욱
0
30
0
0
2018-11-11 03:42:30
- <?php
- $EXCEL_STR = "";
- $EXCEL_STR .= "
- <table border='1'>
- <tr>
- <th style='background-color:#f1f1f1;' width=\"50\">순번</th>
- </tr>
- ";
- foreach($list as $key => $row)
- {
- $EXCEL_STR .= "
- <tr>
- <td style=\"text-align:center;mso-number-format:'\@';\">".$row['number']."</td>
- </tr>
- ";
- }
- $EXCEL_STR .= "</table>";
- echo "<meta content=\"application/vnd.ms-excel; charset=UTF-8\" name=\"Content-type\"> ";
- echo $EXCEL_STR;
- ?>