분류 전체보기
확장자 찾아내기
int pos = fileNames.get(i).lastIndexOf(".");String extension = fileNames.get(i).substring(pos + 1);System.out.println(fileNames.get(i)); if (extension.equals("xlsx")) {
HTML에서 PHP include로 parameter넘기기
사실 방법이 닥히 있는건 아니고 그냥 특징(?)을 이용하는 방법이 있다.input parameter, output parameter라고 하긴 애매하지만 일단 원하는 기능은 한다. reference : http://php.net/manual/en/function.include.php#example-128 Example #1 Basic include examplevars.php test.php
이미지 blob으로 저장하고 출력하기
# 이미지 파일크기 줄이기http://blog.habonyphp.com/entry/php-base64-%EB%AC%B8%EC%9E%90%EC%97%B4%EC%9D%84-%EC%9E%91%EC%9D%80-%EC%9D%B4%EB%AF%B8%EC%A7%80%EB%A1%9C-%EB%B3%80%ED%99%98%ED%95%98%EC%97%AC-MySql%EC%97%90-%EC%A0%80%EC%9E%A5%ED%95%98%EA%B8%B0 # show image from mysql with phpTry Like this.For Inserting into DB$db = mysqli_connect("localhost","root","","DbName"); //keep your db name $image = addslashe..
opensource gallery
https://www.google.co.kr/search?newwindow=1&safe=off&ei=3gL5WarxBYTW8QXxlrKABQ&q=php+open+source+gallery&oq=gallery+php+opensource&gs_l=psy-ab.3.1.0i13i30k1j0i10i30k1j0i13i5i30k1j0i8i13i30k1l3j0i13i5i30k1l2j0i8i13i30k1l2.90475.97189.0.102880.26.22.0.0.0.0.357.1804.0j5j3j1.9.0....0...1.1.64.psy-ab..17.9.1801...0j0i131k1j35i39k1j0i203k1j0i30k1j0i5i30k1j0i8i30k1.0.uW1G2C-G4IE http://www.ubergallery..
txt파일 include하고 line break 나타내기
include txt file on html As MrN00b noted, I am assuming you have left out the inclusion of the jQuery js file itself? Please include it, if you have not already, as it is not implicitly part of a web page.As your code precedes the item in the document it references (id="text"), you need to wait for the document to complete loading:Use one of these so that your jQuery will wait for the DOM to fin..
excel file 조작하기
이전 버전 다운받는 주소 : https://archive.apache.org/dist/poi/release/bin/ POI 4.0 and later require JDK version 1.8 or later. POI 3.11 and later 3.x versions require JDK version 1.6 or later. POI 3.5 to 3.10 required the JDK version 1.5 or later. Versions prior to 3.5 required JDK 1.4+. Busy Developers' Guide to HSSF and XSSF Featureshttps://poi.apache.org/spreadsheet/quick-guide.html example source : ht..
[openSource] naver smart editor 2.0
사진을 올릴려면 예전 버전을 다운받아서 해당 폴더를 열어야한다.https://github.com/naver/smarteditor2/releases/tag/v2.8.2.3 photo uploader의 ul은 SmartEditor2Skin.html에 추가한다. 글쓰기영역으로 바로가기 사진 1. upload된 파일의 이름을 변경하기http://lovelydoll.tistory.com/35 2. textarea에 있는 데이터로 저장하기q) textarea의 값이 php post로 전달이 되지 않을때는 아래 코드를 추가했는지 확인한다. function submitContents(elClickedObj) { // 에디터의 내용이 textarea에 적용됩니다. oEditors.getById["ir1"].exec("U..