include_once "./common/common.php";
include_once $ROOT_DIR."/inc/inc_header.html";
$no = ifilter($_REQUEST["no"],"NUMBER");
//$search_str = ifilter($_REQUEST["search_str"],"STRING");
$sql = "SELECT *
FROM news
WHERE no='$no'
";
$row = $db->fetch_object($sql);
$no = $row->no;
$title=$row->title;
$contents = $row->contents;
$reg_date = $row->reg_date;
$img_folder_1 = $row->img_folder_1;
$img_name_1 = $row->img_name_1;
$attach_str = "";
if($img_name_1) $attach_str_1= '';
?>
include_once $ROOT_DIR."/inc/inc_top.html"; ?>