header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$file.xls" );
header( "Content-Description: PHP4 Generated Data" );
'PHP > 기본' 카테고리의 다른 글
UTF-8 charset 해더 (0) | 2012.04.18 |
---|
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$file.xls" );
header( "Content-Description: PHP4 Generated Data" );
UTF-8 charset 해더 (0) | 2012.04.18 |
---|
php.ini 의
short_open_tag = Off
이 설정 때문에 그렇다..
short_open_tag = On
으로 바꿔주면 잘 된다~
10mb 이상 큰용량 파일 업로드시 변수가 인식하지 못할 때.. (0) | 2012.04.18 |
---|
php.ini의 max_upload_filesize 도 충분히 조정되어있는데..
10mb 이상 파일을 업로드 했을때 변수 들이 인식 안되는 경우가 있다.
이때는 php.ini 에
post_max_size 의 값을 충분히 늘려주면 된다.. ㅠㅠ
아.. 이거 몰라서 완전 개삽질 했네 ㅠㅠ
<? 가 안먹고 <?php 만 먹을때 (0) | 2012.04.18 |
---|