Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- mysql
- not working
- php 취약점
- 안드로이드 푸쉬
- 안드로이드 gcm
- PHP
- WebView
- Mail Server
- dovecot
- xe
- UML
- chart.js
- javascript
- C#
- 자바스크립트
- 폼메일
- 설치
- 안드로이드
- roundcube
- php 시큐어코딩
- FCM
- android 효과음
- curl
- 안드로이드 푸시
- 우분투
- C# IO
- 자동 생성
- Android
- html5
- soundpool
Archives
- Today
- Total
목록전체 글 (496)
그러냐
php 엑셀 다운로드시 0 사라지는 현상
하면됨
php
2016. 1. 25. 14:34
엑셀파일 다운로드 시 한글깨짐 현상
엑셀파일을 다운받을 때, 특정 정보들만 깨짐 현상이 있어 헤더를 수정하였다. 깨지기 전 헤더는 이렇게 쓰고 있었다. - header( "Content-type: application/vnd.ms-excel" ); header( "Content-Disposition: attachment; filename=$_POST[filename].xls" ); header( "Content-Description: PHP4 Generated Data" ); header( "Content-charset=euc-kr" ); - 수정한 헤더는 이렇다. - header( "Content-type: application/vnd.ms-excel; charset=euc-kr" ); header( "Content-Disposition..
php
2016. 1. 25. 14:34
php 날짜 비교
On Marketing | on_mkt http://blog.naver.com/on_mkt/90088719987 $newicon =""; $crtdate=mktime(0,0,0,substr($faq['created'],5,2),substr($faq['created'],8,2),substr($faq['created'],0,4)); $nowdate=mktime(0,0,0,date("m"),date("d"),date("Y")); if(($nowdate - $crtdate)/(24*60*60) < 5){ $newicon = " "; }
php
2016. 1. 25. 14:33