엑셀(excel)파일로 다운로드 받기 header
페이지 정보
본문
############################################################################
## 엑셀파일 저장헤드
$file_name = "{$inputY}_{$inputM}_{$inputD}.xls";
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$file_name" );
header( "Content-Description: PHP4 Generated Data" );
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$filename");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");
## 엑셀파일 저장헤드
$file_name = "{$inputY}_{$inputM}_{$inputD}.xls";
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$file_name" );
header( "Content-Description: PHP4 Generated Data" );
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$filename");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");
- 이전글두개의 이미지를 투명하게 겹치는 함수 21.02.09
- 다음글순위 입력.. rank 21.02.09
댓글목록
등록된 댓글이 없습니다.