코멘트유무와 특정필그값유무에 따른 출력
본문
view화면에서 코멘트가있는 경우 a를출력
코멘트가 1개 이상인경우 b를 출력
$view[wr_3] 값이 0보가 작으면 c를 출력하고싶은데 이 세가지 조합이 가능할까요?
<?
// event time
$notice_time = $view[wr_3];
$last_time = $notice_time - $current_time ;
if($last_time < 0) {
echo "C";
}
?>
<?php if ($view['comment_cnt']) { ?>
A
<? } else { ?>
B
<?php } ?>
<?php } ?>
답변 1
if($view['wr_comment'] > 1) $comment_msg = "b";
else if($view['wr_comment']) $comment_msg = "a";
if($view['wr_3'] < 0) $comment_msg = "c";
echo $comment_msg;
답변을 작성하시기 전에 로그인 해주세요.