sql 추가 문의
본문
if ($current_time <= $notice_time) {
echo "<span style='color:#2884c7; font-size:11px;'> (~" . substr($list[$i][wr_5],5, 6).")</span>";
}
else if ($notice_time ='' ) {
echo "<span style='color:#2884c7; font-size:11px;'> (~".채용시까지.")</span>";
}
$current_time <= $notice_time 일때 wr_5 값을 출력하고있는데, 추가로
$notice_time에 값이 없을때 '~채용시 까지' 출력되게하고싶어요~
답변 2
올리신 소스에 notice_time에 equal이 하나라서 무조건 true로 판단되겠네요
else if ($notice_time ='' ) {
echo "<span style='color:#2884c7; font-size:11px;'> (~".채용시까지.")</span>";
}
else if(!$notice_time) {
echo '<span style="color:#2884c7;font-size:11px;"> (~".채용시까지.")</span>';
}
답변을 작성하시기 전에 로그인 해주세요.