커피와 개발자

php 엑셀파일로 데이터 저장하기 본문

웹개발/PHP

php 엑셀파일로 데이터 저장하기

광박이 2009. 8. 31. 18:05
728x90
다음과 같은 구문을 추가하면

$filename="account_" . date('Y_m_d(H i)');
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$filename.xls" );
header( "Content-Description: PHP4 Generated Data" );

PHP 파일의 데이터를 엑셀로 저장할 수 있다.
위의 코드를 빼주면 PHP를 웹에서 사용하는 것과 같다.
728x90

'웹개발 > PHP' 카테고리의 다른 글

치환 함수 str_replace()  (0) 2009.09.28
파일 다운로드 페이지  (0) 2009.09.08
PHP 업로드 파일 삭제하기  (0) 2009.08.10
PHP 다중업로드 하기  (0) 2009.08.10
$_SERVER['HTTP_REFERER'] ?  (0) 2009.07.31
Comments