묻고답하기

아래 소스에서 글 수정할 때 확장변수 3, 4, 5 번은 수정이 안되게 하거나
기존에 가지고 있던 값을 강제로 저장하게하는 방법을 알고 싶습니다.
 
   
<div class="exForm" cond="count($extra_keys)">
<table cond="count($extra_keys)" cellspacing="0" summary="Extra Form">
<col width="150" />
<col />
<col width="150" />
<col />
<tr>
<th scope="row">{$extra_keys[1]->name}</th>
<td>{$extra_keys[1]->getFormHTML()}</td>
<th scope="row">{$extra_keys[2]->name}</th>
<td>{$extra_keys[2]->getFormHTML()}</td>
</tr>
<tr>
<th scope="row">{$extra_keys[3]->name}</th>
<td colspan=3>{$extra_keys[3]->getFormHTML()}</td>
</tr>
<tr>
<th scope="row">{$extra_keys[4]->name}</th>
<td>{$extra_keys[4]->getFormHTML()}</td>
<th scope="row">{$extra_keys[6]->name}</th>
<td>{$extra_keys[6]->getFormHTML()}</td>
</tr>
<tr>
<th scope="row">{$extra_keys[5]->name}</th>
<td>{$extra_keys[5]->getFormHTML()}</td>
<th scope="row">{$extra_keys[7]->name}</th>
<td>{$extra_keys[7]->getFormHTML()}</td>
</tr>
</table>
</div>