묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.06.20 12:00
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
$title=cut_str(stripslashes(strip_tags($tc[subject])),"10");
echo "<tr><td><a href='/bbs/view.php?id=$tc[id]&no=$tc[parent]' onfocus=blur()><font color=royalblue><b>$tc[name] : </b></font> $title"."<font size=1 color=orange>[".$tc[total_comment]."]</font></a></td></tr>";
}
이부분을 아래처럼 해보세요^-^
while($tc=mysql_fetch_array($c_result)) {
if ($tc[id] !="추출안될게시판아이디") {
$title=cut_str(stripslashes(strip_tags($tc[subject])),"10");
echo "<tr><td><a href='/bbs/view.php?id=$tc[id]&no=$tc[parent]' onfocus=blur()><font color=royalblue><b>$tc[name] : </b></font> $title"."<font size=1 color=orange>[".$tc[total_comment]."]</font></a></td></tr>";
}
}