기초적인거 두가지만 질문드릴께요~~
본문
1번 질문 -
<span class="<? if ($bo_table='test') { echo "actives"; } else { echo "normal"; } ?>">
활성화 시키려고 하는데 페이지 인식이 안되요 이게 아닌가요 ? ;;
.actives {color:#ff0000;} .normal {color:#000;}
2번 질문 -
<? if($list[$i]['wr_1']=="1") echo "출력: {$list[$i]['wr_2']}" ?> 이건 잘되는데 @number_format 쓰려면
<? if($list[$i]['wr_1']=="1") echo "출력: @number_format{$list[$i]['wr_2']}" ?> ---->안되네요
어떻게 해야 하나요 ?
답변 1
$bo_table == 'test'
<? if($list[$i]['wr_1']=="1") echo "출력: ".number_format($list[$i]['wr_2']); ?>
답변을 작성하시기 전에 로그인 해주세요.