본문 바로가기

'.' Programs

(161)
mysql 사용자 등록 및 권한 설정(grant) [GRANT 구문사용하기] mysql> grant all on *.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant all on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant select on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant update on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant select,update on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> flush privileges; [My..
포트 ping 체크 프로그램. 커맨드모드에서 특정 ip 에서의 포트가 열려있는지 알아보기 위한 ping 프로그램. 1. 커맨드 창에서 프로그램이 설치된 폴더에 접근 2. 명령어 : tcping ip 포트 입력 ex )tcping 192.168.0.1 80
윈도우 APACHE + PHP 연동시 오류 해결법. 윈도우에 아파치 + PHP 연동 웹서버를 구축시 흔히 보는 에러 메시지.." The requested operation has failed " 가 사람을 미치게 한다. 일단 보통 사람들이 해결했다고 하는 해결책 리스트를 보자면.. 1. Apache 의 설정파일(httpd.conf)에 페이지 가장 하단에 PHP 모듈과 php 확장자를 등록하는 설정을 추가한다. LoadModule php5_module "C:\php\php5apache2.dll" AddType application/x-httpd-php .php .html 2. - php.ini 파일의 수정 extension_dir="c:\(php설치디렉토리)\ext" extenstion=php_mysql.dll (주석 제거) (경로에서 \, / 아무거나 상..
[jQuery Mobile] swipe ( flicking) 구현방법정리 http://m.11st.co.kr 이나 다른 여러 사이트를 보면 손가락으로 상품을 이동시키는 기능을 제공한다. 이를 swipe 혹은 flicking이라고 한다. 이런 기능을 구현하기 위해 몇가지 방법을 정리한다. 1.jquery.touchSwipe.js 플러그인 사용하기 http://labs.skinkers.com/content/touchSwipe/ 가장 많이 사용하는 방법임 아래 데모가 아주 잘 정리되어있음 TouchSwipe is a jquery plugin to be used with jQuery on touch input devices such as iPad, iPhone etc. Features Detects swipes in 4 directions, "up", "down", "left" an..
innerHTML VS jQuery html VS jQuery append 함수 처리 속도는? 위의 3가지 함수의 처리 속도가 궁금 하다면.. http://jsperf.com/innerhtml-vs-jquery-html-vs-jquery-append 사이트 참고해 보세요. ^^
JQUERY CHECK BOX 관련 기능 정리 이용 변경 해지 1. 특정 체크박스 체크 확인 2. 체크 박스 전체 $('input[name=mod_gb]:checkbox').click(function() { // name이 mod_gb인 체크박스 그룹의 아무 박스를 선택하면 var gb1 = $('#mod_gb1').attr('checked'); var gb2 = $('#mod_gb2').attr('checked'); var gb3 = $('#mod_gb3').attr('checked'); if(gb3 && (gb1 || gb2)){ alert("ID 해지는 다른 항목과 중복 선택하실 수 없습니다."); $('#mod_gb3').attr('checked', false); } }); 3. 체크박스 선택 유무 확인 $('#btn').click(funct..
PHP 에서 Magic Packet (WOL : 컴퓨터 원격 부팅) 을 보내는 소스. 선행 조건 컴퓨터 바이오스에서 Wake On Lan 옵션이 설정 되어 있어야 한다. 001
PHP 에서 ping 체크 .. 웹에서 ping 체크를 해야할 경우 사용한다.