1번 방법 $mysql_last_query = ""; //this var contains the last mysql query function query($sql, $args) { #sintax: query("query", "arg1", "arg2", "argn"); EXAMPLE: query("select * from %s", $_GET["table"]); global $mysql_last_query; $args = func_get_args(); if(($num = func_num_args()) > 1) $sql = call_user_func_array("sprintf", $args); $mysql_last_query = $sql; return mysql_query($sql); } function se..
Javascript trim In programming, trim is a string manipulation function or algorithm. The most popular variants of the trim function strip only the beginning or end of the string. Typically named ltrim and rtrim respectively. This Javascript code trim implementation removes all leading and trailing occurrences of a set of characters specified. If no characters are specified it will trim whitespac..
AJAX file upload Ever wanted to upload files using AJAX like in GMAIL, without reloading the page? Now you can. Cross browser method to upload files using AJAX in only 1Kb of code. You need to create a form with file fields you wish to upload and define “onsubmit” event. Look at the example below how to do that. Tested in IE5.5+, FF1.0+, OP 8.0+ DEMOSource code for index.html Name: File: # of su..
strPhone = "123-456-789" Dim result, acnt // 초기 정의 및 초기화 ReDim strPhone_num(3) // 배열정의 및 초기화 result = Split(strPhone,"-") // 특정구분자 ('-') 로 자르기 acnt = UBound(result) // 총 배열수 확인 For i=0 To acnt Step 1 // FOR 문 (0부터 배열수까지) strPhone_num(i) = result(i) // 배열저장 Next // 다음
1, SELINUX 설정시. -> 보안 강화로 인하여 접근권한 미 설정시 SELINUX 에서 차단을 하기에 /etc/selinux/config 파일에서 DISABLE 처리를 하여 아예 사용을 안하거나. -> chcon -R -h -t httpd_sys_content_t /home/dev/www 식으로 권한을 주면, 된다. Shell에서 'ls -Z'를 해 보면 아래와 같이 파일이나 디렉터리의 보안 환경을환경을 볼 수 있다. # ls -Z /home/... drwx--x--x abcd abcd user_u:object_r:user_home_dir_t abcd drwx--x--x efgh efgh user_u:object_r:httpd_sys_content_t efgh 보안 환경에서 세번째 요소가 중요한 부..
- Total
- Today
- Yesterday
- Entity Code
- CKFinder
- 구분자 자르기
- selinux
- resttemplate
- php
- HTTPD
- 정규식
- iis 파일 다운로드 공백
- CKEditor
- 엔티티 코드표
- 1차원 배열저장
- postForObject
- 파일명 공백
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |