묻고답하기
확장변수 폼 디자인??
2011.07.07 14:02
아래와 같이 확장변수 9개 추가해서 한줄에 2개씩 확장변수가 나오게 바꾸었는데...
확장변수를 1번씩만 보여주면 되는데...9번을 똑같이 반복하네요..뭐가 문제일까요?
<!--@if($oDocument->isExtraVarsExists() && (!$oDocument->isSecret() || $oDocument->isGranted()) )-->
<table border="1" cellspacing="0" summary="Extra Form" class="extraVarsList">
<!--@foreach($oDocument->getExtraVars() as $key => $val)-->
{@ $extravar_list = $oDocument->getExtraVars()}
<tr>
<th>{$extravar_list[1]->name} :</th>
<td>{$extravar_list[1]->getValueHTML()}</td>
<th>{$extravar_list[2]->name} :</th>
<td>{$extravar_list[2]->getValueHTML()}</td>
</tr>
<tr>
<th>{$extravar_list[3]->name} :</th>
<td>{$extravar_list[3]->getValueHTML()}</td>
<th>{$extravar_list[4]->name} :</th>
<td>{$extravar_list[4]->getValueHTML()}</td>
</tr>
<tr>
<th>{$extravar_list[5]->name} :</th>
<td>{$extravar_list[5]->getValueHTML()}</td>
<th>{$extravar_list[6]->name} :</th>
<td>{$extravar_list[6]->getValueHTML()}</td>
</tr>
<tr>
<th>{$extravar_list[7]->name} :</th>
<td>{$extravar_list[7]->getValueHTML()}</td>
<th>{$extravar_list[8]->name} :</th>
<td>{$extravar_list[8]->getValueHTML()}</td>
</tr>
<tr>
<th>{$extravar_list[9]->name} :</th>
<td>{$extravar_list[9]->getValueHTML()}</td>
<th>{$extravar_list[4]->name} :</th>
<td>{$extravar_list[4]->getValueHTML()}</td>
</tr>
이게 키값이 증가하는 만큼 반복하라는 소리입니다. 변수가 9개면 9번 반복하세요 하는 의미...