전체 글64 PHP 엑셀 다운로드 하기 [PHP 엑셀 다운로드 하기] 헤더에 두줄을 추가하면 해당 페이지가 excel로 다운로드 된다. 2017. 5. 2. jQuery 이미지 미리보기 [jQuery 이미지 미리보기] 이미지 파일 선택시, 오른쪽에 이미지 미리보기 function readURL(input, id) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { var vimg = ''; $('#' + id).html(vimg); } reader.readAsDataURL(input.files[0]); } } $("input:file").change(function(){ var readView = $(this).attr("data-view"); readURL(this,readView); }); 2017. 5. 2. PHP 도메인 분기법 [PHP 도메인 분기법] 같은 도메인으로 여러개의 URL로 던질 수 있음 2017. 5. 2. PHP 에러 확인 [PHP 에러 확인하는 방법] 2017. 5. 1. 이전 1 ··· 4 5 6 7 다음