336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
excel 로 뺄때..
$xlsName=DATE("Ymd")."-이벤트.xls";
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$xlsName" );
header( "Content-Description: PHP4 Generated Data" );
만약 한글 깨질때..<head></head> 사이에 넣어줌..
<meta http-equiv="Content-Type" content="text/html;charset=euc-kr">
$xlsName=DATE("Ymd")."-이벤트.xls";
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=$xlsName" );
header( "Content-Description: PHP4 Generated Data" );
만약 한글 깨질때..<head></head> 사이에 넣어줌..
<meta http-equiv="Content-Type" content="text/html;charset=euc-kr">
'컴터 > php' 카테고리의 다른 글
php 로 엑셀 파일 읽기. (0) | 2008.07.16 |
---|---|
[펌]남은 일 시 분 초 구하기 (0) | 2008.05.12 |
iconv 없이 utf-8문자열 출력하기 (0) | 2008.01.15 |
AND 와 &&, OR 와 || 는 다르다 (0) | 2007.12.10 |