■ PHP php excel .csv file download PHP를 이용해 MySQL DB(데이터베이스)의 데이터 자체를 CSV 파일로 내보내야 하는 경우가 있음 ■ 예제 PHP를 이용해 CSV 파일 형태로 내보내는 예제 // 파일명 지정 $filename = "Example_Filename_" . date("Ymd") . ".csv"; header('Content-Type:text/css;charset=EUC-KR;'); header('Expires: 0'); header('Content-Transfer-Encoding: binary'); header('Cache-Control: private, no-transform, no-store, must-revalidate'); header("Content..