$homepage_path = '../'; require('config.inc'); if (USE_SHELF_LOC == 1) { require ("oci8.inc"); $oci->connect(); // ÀÚ·á½ÇÀ» °¡Á®¿Â´Ù. $qry = "select code, description from cd_code_tbl where class='19' order by code"; $oci->parse($qry); $oci->exec(); $shelf_loc_list = ''; while ($oci->fetchInto(&$col)) { $code_data = $col[CODE]; $description = $col[DESCRIPTION]; if (trim($code_data) != "" ) $shelf_loc_list .= "\n"; } $oci->disconnect(); } ?>