adding URL parameters to a form PHP HTML(将 URL 参数添加到表单 PHP HTML)
本文介绍了将 URL 参数添加到表单 PHP HTML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
将 url get 参数放在表单操作中是否可以或正确?
Is it okay or correct to put a url get parameter in a form action?
<form method='get' action='index.php?do=search'>
<input name='_search' type='text' value='What are you looking for?'>
<button type='submit'> Search </button>
</form>
当我提交表单时,URL 更改为:
When I submit the form the URL is changed to:
index.php?_search=What are you looking for? (I've stripped %20)
我更喜欢阅读网址
index.php?do=search&_search=What are you looking for?
最好在表单中添加一个隐藏字段
Would it be best to add a hidden field into the form
<input type='hidden' name='do' value='search' />
推荐答案
在我看来,您应该将它们添加为隐藏字段.如果您可以通过隐藏表单字段来传递参数,那么尝试传递参数是没有意义的
In my opinion you should add them as hidden fields. There is no point to try to pass params if you can do it via hidden form field
使用:
<input type='hidden' name='do' value='search' />
这篇关于将 URL 参数添加到表单 PHP HTML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:将 URL 参数添加到表单 PHP HTML
基础教程推荐
猜你喜欢
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01