Search

'PHP/기본'에 해당되는 글 2건

  1. 2012.05.01 엑셀 저장 해더
  2. 2012.04.18 UTF-8 charset 해더

엑셀 저장 해더

PHP/기본 2012. 5. 1. 21:26 Posted by 퓨어레드

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

UTF-8 charset 해더

PHP/기본 2012. 4. 18. 12:40 Posted by 퓨어레드
header ("Content-type: text/html; charset=utf-8");

'PHP > 기본' 카테고리의 다른 글

엑셀 저장 해더  (0) 2012.05.01