이미테이션 게임
별 다섯개 만점에 세개
쏘쏘
이 블로그 검색
2015년 2월 22일 일요일
2014년 7월 24일 목요일
2014년 7월 23일 수요일
[wordpress] contact-form-7 플러스인 익스 발송 되지 않을때
/wp-content/plugins/contact-form-7/wp-contact-form-7.php
49 Line 근방 어딘가,
if ( ! defined( 'WPCF7_LOAD_JS' ) )
define( 'WPCF7_LOAD_JS', true );
=>
if ( ! defined( 'WPCF7_LOAD_JS' ) )
define( 'WPCF7_LOAD_JS', false );
끝
49 Line 근방 어딘가,
if ( ! defined( 'WPCF7_LOAD_JS' ) )
define( 'WPCF7_LOAD_JS', true );
=>
if ( ! defined( 'WPCF7_LOAD_JS' ) )
define( 'WPCF7_LOAD_JS', false );
끝
2014년 7월 22일 화요일
[php] n개이상의 배열 합치기 , 붙이기
$arr_a=array('1');
$arr_b=array('2');
$arr=array_merge($arr_a,$arr_b);
결과 는,
$arr=array('1','2');
끝
2014년 7월 21일 월요일
[javascript] url 경로 확인
자바스크립트 url 경로 확인 코드
예 ) http://www.test.co.kr/test/test.php?test=ok
라는 위치라면
location.protocol : http:
location.host : www.test.co.kr
location.pathname : /test/test.php
location.search : ?test=ok
유용해 보인다
예 ) http://www.test.co.kr/test/test.php?test=ok
라는 위치라면
location.protocol : http:
location.host : www.test.co.kr
location.pathname : /test/test.php
location.search : ?test=ok
유용해 보인다
피드 구독하기:
글 (Atom)