일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 덕소골프샵
- 태안수영장펜션
- 괌자유여행
- 휘닉스파크
- 서원힐스
- 잠실수영장
- 포천온천
- 포천수영장
- 조경철천문대
- 야생개복숭아
- 개복숭아판매
- 괌
- 개복숭아
- 개복숭아 판매
- 야생개복숭아 판매
- wp-900
- 제주도눈
- 한라산
- 자연산 개복숭아
- 포천가볼만한곳
- 돌복숭아
- 제주도눈썰매
- 자연산개복숭아
- 제주도설경
- 파주골프장
- 충주골프장
- LGG6
- 제주도
- 포천투어
- 경기북부골프장
- Today
- Total
목록개발은 핵찜이야 (265)
Live Brilliant
codeigniter 에서 admin/board 를 라고 치면 페이지 접근이 되는데admin/board/board 라고 치면 접근이 안된다.ci에서 controller에 하위폴더를 한단계까지밖에 접근이 안된다고한다. ex) controllers/board.php 또는 controllers/admin/board.php 까지 만들 수 있는데 controllers/admin/board/board/list.php 이런식으로로 안되는 것이다. 그래서 아래와 같이 MY_Router 를 만들어 주면 된다. application/core 폴더아래 추가 class MY_Router extends CI_Router{ /** * Constructor * * Runs the route mapping function. */ f..
[에러]Illegal mix of collations (utf8_general_ci,IMPLICIT) and (euckr_korean_ci,COERCIBLE) for operation '=' 이유 php 파일은 euc-kr 문자셋이구 DB는 utf-8 이여서 파일 문자셋을 utf-8로 변경해 줘야 한다.
모바일 웹사이트 프레임워크 1. iui URL : http://code.google.com/p/iui/ 2. jqtouch URL : http://jqtouch.com/ 3. iwebkitURL : http://iwebkit.net/ 4. querymobileURL : http://jquerymobile.com/ 5. senchaURL : http://www.sencha.com/products/touch http://jquery-plugins.net/caroufredsel-circular-responsive-jquery-carouselhttp://dimsemenov.com/plugins/touchcarousel/#carousel-image-text-horizontal[출처] 모바일 웹 개발 프레임 워크 ..
Codeigniter 쿼리스트링URL 과 세그먼트 URL 혼합 사용 하기 1. 세그먼트 기반 접근방식 예: example.com/product/search/test/2 2.쿼리스트링 접근방식 예: example.com/?c=product&m=search&pname=test&pid=2 위 두가지 동시에 사용하는 방법 Option 1: Mixing Globally(전역 적용) To enable this globally, go to your application/config.php file, and look for $config['uri_protocol']variable and change it to: $config['uri_protocol'] = "PATH_INFO";After that, find the $..
1. windows에서 hosts 파일 수정경로 : C:\Windows\System32\drivers\etc\hosts 아래와 가티 내용 추가# localhost name resolution is handled within DNS itself.127.0.0.1 localhost#::1 localhost127.0.0.1aaa.met127.0.0.1bbb.met127.0.0.1ccc.met127.0.0.1ddd.met 2. apmsetup에서 아파치conf 파일 수정경로 : C:\APM_Setup\Server\Apache\conf\httpd.confa.아래 내용 중 빨강색 주석을 없애주고# Virtual hosts# Include conf/extra/httpd-vhosts.conf b. httpd-vhost..
[에러] Youtube api 연동중 simplexml_load_file 에러 발생 Warning: simplexml_load_file() [function.simplexml-load-file]: URL file-access is disabled in the server configuration in C:\APM_Setup\htdocs\youtube.php on line 95 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/videos/RK_TkMWTdiw) [function.simplexml-load-file]: failed to open stream: no suitable wrapper could be found in C:\APM_Se..
1. 코드이그나이터 압축풀기 2. RESERVED ROUTES 예약된 경로/application/config/routes.php $route['default_controller'] = 'welcome';위 라우팅 경로는 URI 가 아무런 데이터도 포함하지않았을때 어떤 컨트롤러가 로드 될지 나타냅니다. 루트경로를 호출했을경우가 이에 해당합니다.=> 난 위 설정을 home 으로 변경 하였다. 2. 하위 디렉토리 아래와 같이 셋팅 3. 접근 방법/localhost/ /localhost/member/ index.php 파일 제거
스크립트 navigator 객체를 이용한 브라우저 정보 확인
MSSQL DATE 함수 1. GETDATE() 현재 시스템 날짜를 리턴 > SELECT GETDATE() 결과: 2012-07-10 14:00:00.000 >SELECT GETDATE() + 30 결과: 2012-08-09 14:00.00.000 2. DateAdd() 지정된 날짜에 지정된 간격의 시간을 더한 날짜를 리턴 ex) DateAdd(interval, number, date) >select dateadd(week,-2,getdate()) //2주전 결과: 2012-06-26 14:00:00.000 3. DateDiff 두날짜 사이의 간격을 리턴 ex) DateDiff(interval, date1, date2) >select datediff(d, getdate(), '20120601') 결과: ..
Ajax Load