[PHP] PHPExcel 엑셀 파일 업로드 하고 내용 읽기[PHP] PHPExcel 엑셀 파일 업로드 하고 내용 읽기
Posted at 2018. 3. 22. 09:37 | Posted in PHP/PHP Library■ 엑셀(*.xls) 파일 업로드 하고 내용 읽기
# 소스코드 - 엑셀 파일 업로드 excel_upload.php
<html> <html> <head> <title>:: PHPExcel 파일읽기 ::</title> </head> <form enctype="multipart/form-data" action="./excel_read.php" method="post"> <table border="1"> <tr> <th style="background-color:#DCDCDC">파일</th> <td><input type="file" name="excelFile"/></td> </tr> <tr> <th style="background-color:#DCDCDC">등록</th> <td style="text-align:center;"><input type="submit" value="업로드"/></td> </tr> </form> </html> 출처: http://wickedmagic.tistory.com/584?category=613655 [사악미소의 현대마법의 공방] |
# 소스코드 - 엑셀 파일 읽기 excel_read.php
<?php $extension = strtoupper(pathinfo($filename, PATHINFO_EXTENSION)); |
# 출력결과 - 엑셀 파일 업로드
# 출력결과 - 엑셀 내용 출력
'PHP > PHP Library' 카테고리의 다른 글
[PHP] SimpleSql 라이브러리를 사용한 손쉬운 쿼리사용 (1) | 2018.04.16 |
---|---|
[PHP] PHP 메일 발송 (5) | 2018.04.10 |
[PHP] PHPExcel 설치하고 엑셀파일 다운받기 (0) | 2018.03.21 |
[PHP] PHP QR코드 이미지 저장하고 띄우기 (0) | 2018.03.16 |
[PHP] PHP QR코드 세팅하기 (0) | 2018.03.15 |