我有一个表格用笨支架
echo form_open('signup');
echo form_close();
当我提交我得到以下错误
An Error Was Encountered
The action you have requested is not allowed.
不要 always
但是往往...
即使隐藏inputfield的形式存在于内部:
<div style="display:none">
<input type="hidden" value="token name is here" name="csrf_token_name">
</div>
这也发生了类似的形式(签到)
编辑:HTML经由形式产生
<form accept-charset="utf-8" method="post" action="http://www.example.com/signup">
<div style="display:none">
<input type="hidden" value="93565fb5855d31af3d46bd655b11a4a6" name="csrf_token_name">
</div>
<input id="username" type="text" placeholder="Username" maxlength="20" value="" name="username">
<input id="email" type="text" placeholder="Email" value="" name="email">
<input id="password" type="password" placeholder="Password" value="" name="password">
<input id="submit" type="submit" value="Sign up" name="submit">
</form>