$uid = addslashes($_GET[uid]); #ÇØ´ç ±Û º¯¼ö¸¦ ¹ÞÀ½ if($uid){ $qry = "select kind,name,email,homepage,html,title,content from $board where uid=$uid"; $result = mysql_query($qry); $row = mysql_fetch_array($result); $kind = $row[kind]; $name = $row[name]; $email = $row[email]; $homepage = $row[homepage]; $html = $row[html]; $title = $row[title]; $content = $row[content]; } ###################### ÅÂ±× ºÎºÐ Çã¿ë ###################### if($html == 1){ $content = tag_check($content); }else{ $content = del_html($content); } ########################################################## ?>