[求助]用此方法输出的内容不用清空吗?
用此方法输出的内容不用清空吗? (点清空后,内容还在.) <?php
$opnum = 0;
while($opres = mysql_fetch_array($opquery))
{
$opnum++;
?>
<table id="addtitle" width="450" height="20" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><a onclick="delrow()"><img src="../images/del.gif" width="17" height="19" align="middle" /></a>
选项<?php echo $opnum;?>:<input name="optcont[]" type="text" size="45" maxlength="30" value="<?php echo $opres["opt_content"]; ?>"/> *</td>
</tr>
</table>
<?php
}
?>
<input type="reset" name="Submit2" value="清空" />