THINKPHP数据提交问题
提交之后在表里找结果,发现只有字段title里面有数据,其他的都是空的。
html:
<form action="__URL__/add" method="post" name="formname" id="formname">
<p>
<label for="title">标题:</label>
<input name="title" type="text" id="title" />
</p>
<p>
<label for="email">邮箱:</label>
<input name="email" type="text" id="email" />
</p>
<p><label for="content">内容:</label></p>
<p>
<textarea name="content" rows="5" cols="25" id="content" class="textarea" ></textarea>
</p>
<p><input type="submit" value="提交" /></p>
</form>
class:
function add() {
$Form = D("Form");
if($Form->create()) {
$Form->add();
$this->redirect();
}else{
header("Content-Type:text/html; charset=utf-8");
exit($Form->getError().' [ <A HREF="javascript:history.back()">返 回</A> ]');
}
}
------解决方案--------------------
你的html name和表的字段名一样,字段影射除外,修改过数据库后,把runtime文件夹删掉。