使用 Kohana 3.2 和 Smarty 形成表格
再会!我正在用 Smarty (MrAnchovy-Kohana_Smarty) 学习 Kohana (3.2)。我创建了一个简单的表单,其中一个字段在提交后进行验证。我希望在验证失败时用提交的值重新填充该字段。请问我该怎么做?
<div class="field_input">{form::input('cs_number')}</div>
您还可以推荐一些使用 Smarty 在 Kohana 中创建和验证表单的框架吗? 先感谢您!沃伊泰克
Good day! I'm learning Kohana (3.2) with Smarty (MrAnchovy-Kohana_Smarty). I created a simple form with one field which is validated after submission. I'd like the field to be repopulated with the submitted value when the validation fails. How can I do it please?
<div class="field_input">{form::input('cs_number')}</div>
Could you also recommend some framework for creating and validating forms in Kohana using Smarty?
Thank you in advance! Vojtech
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Formo 库来创建表单
您需要将 $_POST 数组传递给模板并在输入值中回显它。示例:
>
。You can use Formo library to create forms
You need to pass $_POST array to the template and echo it in input's value. Example:
<input type="text" name="test" value="<?php echo Arr::get($post, 'test) ?>" />
.