下面的法典产生了一个动态的下降箱。
<select name="parent">
<?php
$q = $admindb->getParentCategories();
while($row=mysql_fetch_assoc($q)){
$title=$row[ title ];
$catid=$row[ id ];
?>
<option value="<?php echo $catid; ?>"><?php echo $title; ?></option>
<?php
}
?>
</select>
However, if the form is returned to the user with validation errors, I need the box to remember the previous selection..
在使用文字箱时,我使用了以下代码来纪念这一条目。
<input type="text" name="title" value="<?php echo $form->value("title"); ?>">
我如何在选定的法典中添加这种价值标签?
增 编