[Windows]아파치 및 PHP 설치/FTP서버 설치 아파치 및 PHP / MySQL 설치APMSETUP 1. 다운받아서 설치한다.2. 설치후 ph.ini 에서 register_globals 을On 으로 변경한다.3. www root에 phpinfo.php 를 만들고 내용은 다음과 같이 하면된다. FTP 서버 설치FileZilla_Server_0_9_6.exe1291957813_03.FileZilla_Server_096_KoreanPatch.zip 기본카테고리 2010.12.10
[PHP] jQuery를 이용한 대기상태의 커서 변경 jQuery 를 이용하여대기상태의 커서를원하는 모양으로 변경한다. $( document).ready(function() { ... //////////////////////////////////////////// 대기상태의 커서변경// 커서의 위치를 중앙으로 변경하는 jQuery함수jQuery.fn.center = function () {this.css("position", "absolute");this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px".. 기본카테고리 2010.11.23
[PHP]그 달의 마지막 날짜 구하는 방법 그 달의 1일에서 다음달 1일로 이동한 후 1일을 빼면 마지막 날짜가 나온다. 예1) 현재의 날짜의 해당월$last_day = date("d", strtotime('next month', strtotime(date("Y-m-01")))-1); 예2) 임의로 주어진 년월$year = $_POST['year'];$month = $_POST['month']; if($month $last_day = date("d", strtotime('next month', strtotime(date($year."-".$month."-01")))-1); 기본카테고리 2010.11.19
PHP] ajax 로 서버에 한글 올려보내고 받을 때 ajax 에서 서버에 한글을 올려보낼때, 즉 ajx 에서 변수값을 받을 때 $fname= rawurldecode(iconv("UTF-8","CP949",$fname)); 와 같이 사용하고, ajax 로 보낼때에는 encodeURIComponent() 를 사용함 예제)//== a.php ==... var sword = new Array("", "가", "나", "다", "라", "마", "바", "사", "아", "자", "차", "카", "타", "파", "하"); function termbox(a){var params = "tab_ix="+a+"&sword="+encodeURIComponent(sword[a]);refresh_term_list(params);tab_ix = a;}function refr.. 기본카테고리 2010.11.16
[PHP] 환경설정 변경 vi /www/Zend/etc/php.iniregister_globals 를 On 으로, allow_url_fopen 를 On으로 설정: gets 또는 post 에 의해 전달되는 변수를 전역으로 설정함vi 에디터에서 키명령은삽입='i' , 수정='s' , 삭제='x', 줄삭제='dd', 저장하지않고 종료=':q!' , 저장='ZZ'삽입 또는 수정 종료시='esc'키 , 찾기='/찾을문자' 기본카테고리 2010.10.08