본문 바로가기

php106

PHP 플래시 연동 PHP 와 플래시가 값을 주고 받기 테그 on (release) { getURL("javascript-x:void(open('http://sss.co.kr/sss.php?concern="+concern+"','popup','width=280,height=150'))"); } on (release) { getURL("javascript-x:void(alert('오른쪽 소스보기를 클릭해주세요'))"); } 2008. 10. 18.
PHP registart 값 off 후 파일 업로드 @extract($HTTP_SESSION_VARS); @extract($HTTP_COOKIE_VARS); @extract($HTTP_SERVER_VARS); @extract($HTTP_GET_VARS); @extract($HTTP_POST_VARS); @extract($HTTP_ENV_VARS); if($_FILES['file']['name']){ $AllowExt='/\.alz|\.txt|\.psd|\.xls|\.gz|\.zip|\.bmp|\.doc|\.exe|\.dat|\.gif|\.htm?|\.hwp|\.pdf|\.ppt|\.rar|\.jp?g|\.tif|\.png/i'; $rename=date("YmdHis"); $saveDir="$DOCUMENT_ROOT/report_files/".date("Y.. 2008. 10. 18.
PHP registart 값 off 후 세션 에러 php 4.3.4에서 session_start()를 써도 저런 메세지가 나지 않던데요. 물론 에러리포팅은 다 켜 놓았구요. session_register 대신에 $_SESSION['이름'] ="값"; 을 써 보세요. 아마 이것 때문엔거 같은데, 자세한건 저도 잘 모르겠습니다. Warning: Unknown(): Your script-x possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. .. 2008. 10. 18.
PHP mailto() header 값 정의 $xMailer="PHP/".phpversion(); $headers="MIME-Version: 1.0\r\n"; $headers.="Content-Type:text/html;charset=EUC-KR \n"; $headers.="Content-type: text/html; charset=iso-8859-1\r\n"; $headers.="Content-type: text/html; charset=ks_c_5601-1987\r\n"; $headers.="From: $from_name \r\n"; $headers.="Reply-To: \r\n"; $headers.="X-Mailer : $xMailer \n"; 2008. 10. 18.