특정 게시판에서만 폼이 나타나게하려는데.. 정보
특정 게시판에서만 폼이 나타나게하려는데..본문
일반적인 스킨파일 write.skin.php 에서요
특정 게시판 예로 보드네임이 ABC라는 게시판에서만
글쓰기시 뭐 예를 들어
<input class="field" style="width:100;" name=wr_1 id="wr_1" itemname="상호" required value="<?=$write[wr_1]?>">
이런폼이 나타나고 나머지 게시판에서는 안나타나게하려고 하는데..
어떻게감싸줘야할까요~!
특정 게시판 예로 보드네임이 ABC라는 게시판에서만
글쓰기시 뭐 예를 들어
<input class="field" style="width:100;" name=wr_1 id="wr_1" itemname="상호" required value="<?=$write[wr_1]?>">
이런폼이 나타나고 나머지 게시판에서는 안나타나게하려고 하는데..
어떻게감싸줘야할까요~!
댓글 전체
<? if($bo_table=='ABC') { ?>
<input class="field" style="width:100;" name=wr_1 id="wr_1" itemname="상호" required value="<?=$write[wr_1]?>">
<? } ?>
<input class="field" style="width:100;" name=wr_1 id="wr_1" itemname="상호" required value="<?=$write[wr_1]?>">
<? } ?>
<?
if($bo_table=='ABC') {
?>
<input class="field" style="width:100;" name=wr_1 id="wr_1" itemname="상호" required value="<?=$write[wr_1]?>">
<? } ?>
echo 문 사용하셔도 되구요.
if($bo_table=='ABC') {
?>
<input class="field" style="width:100;" name=wr_1 id="wr_1" itemname="상호" required value="<?=$write[wr_1]?>">
<? } ?>
echo 문 사용하셔도 되구요.
두분다 좋은 답변 감사합니다^_^