header('Content-Type: application/vnd.ms-excel');


header('Content-Disposition: attachment;filename=apply.xlsx');


header('Cache-Control: max-age=0');





$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');


$objWriter->save('php://output');

'PHP 프로그래밍' 카테고리의 다른 글

mysql old_password 구현  (0) 2024.01.10
https ssl 보안인증 적용후 스마트에디터 DHTML 안되는 문제해결  (0) 2018.05.19
include 파악  (0) 2018.02.01
CMS  (0) 2018.01.14
PHP 이카운트 연동  (0) 2018.01.14


create index 인덱스이름 on 테이블(필드);


create index idx_goodscd on gd_goods(goodscd);


'MYSQL' 카테고리의 다른 글

MYISAM  (0) 2018.06.08
MYSQL 외래키  (0) 2018.05.25
index 확인  (0) 2018.02.15
incorrect integer value: '' for column  (0) 2018.01.05
MYSQL 파티셔닝  (0) 2017.12.31

show index from 테이블;

'MYSQL' 카테고리의 다른 글

MYSQL 외래키  (0) 2018.05.25
create index  (0) 2018.02.15
incorrect integer value: '' for column  (0) 2018.01.05
MYSQL 파티셔닝  (0) 2017.12.31
mysql alter table  (0) 2017.12.30

+ Recent posts