【发布时间】:2014-08-15 15:24:26
【问题描述】:
我已经制作了一个表单,我希望用户可以选择在表单中输入,并能够关闭页面并再次打开它并查看他们在表单中输入的文本。我必须使用数据库吗?
这是我的表格:
<form action="" name="form1">
<label>Enter the title: </label>
<input type="text" name="title" class="title">
<label>Enter the description: </label>
<textarea name="description" class="description">
<!--Here's the save button-->
<input type="submit" name="submit" value="Save" class="savebtn">
</form>
我也不确定是否必须使用提交按钮。
【问题讨论】: