ÿØÿà 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/Lib/ |
Upload File : |
<? /** * DB 컨넥션 파일 * */ // DB 접속정보 // /Lib/config.php 에서 설정 // DB 접속 //echo $cf['db_host']; //exit; $connect = db_connect($cf['db_host'],$cf['db_id'],$cf['db_pw'],$cf['db_name'],$cf['db_port']); if (!$connect) die("DB 접속 오류가 발생하였습니다."); // DB 인코딩 설정 db_query("set names '{$cf[charset_str]}'"); // 페이지 헤더 인코딩 설정 @header("content-type: text/html; charset={$cf[charset]}"); ?>