고수님들 도와주세요~~~~~~~
본문
고수님들 도와주세요.......
공시지원 이라는 문구를 기본적으로 표출되게 하려고 하는데
이 코드는 선택약정이 기본 표출이 되고 있어요.
이걸 어떻게 바꿔야 공시지원이 기본적으로 표출되게 할 수 있을까요?
<? if ($view_p_support_type1 == "Y") { ?>
<a href="javascript:change_select_month('공시지원');" class="active" data-dc_type='공시지원'>공시지원</a>
<? } ?>
<? if ($view_p_support_type2 == "Y") { ?>
<?
for ($i = 0; $i < sizeof($view_ph_select_month_explode); $i++) {
if ($i == 0) {
$view_ph_select_month = "선택약정".$view_ph_select_month_explode[$i]."개월";
}
?>
<a href="javascript:change_select_month('<?=$view_ph_select_month_explode[$i]?>');" data-dc_type='선택약정<?=$view_ph_select_month_explode[$i]?>개월'>선택약정<?=$view_ph_select_month_explode[$i]?>개월</a>
<?
}
?>
<? } ?>
답변 1
저한텐 제공주신 코드가 좀 부족하지만
위 소스만 보았을때는 $i 값이 0 에서 증가하지 않아서 그러는 것 같네요
$view_ph_select_month_explode 가 비엇거나 0 인가 봅니다.