表单值不应清晰
我有一张表格可以提交我的联系信息。 我使用 php 获取表单字段,例如:
if(isset($_post['submit']))
{
//submit cantact info
}
else
{
//bad user
}
我的问题是:如果用户未能提交表单,则“表单值不应清除”....
但是单击提交按钮时表单值将被清除..!那么有人知道如何防止清晰的表单值吗?
I have a form to submit my contact info.
and i'm fetching form fields using php like:
if(isset($_post['submit']))
{
//submit cantact info
}
else
{
//bad user
}
my problem is: if the user is failed to submit form the "form values should not clear"....
but form values are clearing on click submit button..! so anyone know how to prevent clear form values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须手动填充这些字段。
总体思路是
在收到 POST 数据后使用 POST/Redirect/GET 方法,您必须检查它并引发错误标志
如果出现某些错误,您必须显示相同的表单,其中包含填写的输入和相应的错误消息。
这是一个粗略的示例:
然后在 form.tpl.php 模板中将其设置为如下:
you have to populate these fields manually.
the general idea stands for using POST/Redirect/GET method
after receiving POST data you have to check it and raise error flag
and in case of some errors you have to show the same form back, with filled inputs and corresponding error messages.
here is a rough example:
and then in the form.tpl.php template make it like this:
您必须(手动)将提交的值放入表单元素中。例子:
You have to (manually) put the submitted values in the form elements. Example:
您需要跟踪表单值。一个建议是设置一组在呈现表单标记时使用的默认值。
在 POST 上,您可以合并发布数据。例如
,然后,在 HTML 中
You need to keep track of the form values. One suggestion is to setup an array of default values that is used when presenting the form markup.
On POST, you then merge the post data. For example
Then, in HTML