|
php에서 엑셀파일형식으로 다운받고 싶을때가 있다이럴때 사용하는 방법으로 table태그형태로 엑셀 파일이 그대로 다운받아진다회원정보,부동산매물정보,자동차매물정보,기타매물 정보등을 다운받을때 사용하는 소스이다 header("Content-type: application/vnd.ms-excel");header("Content-Disposition: attachment; filename=엑셀파일명.xls");header("Expires: 0");header("Cache-Control: must-revalidate, post-check=0,pre-ch
|