基础php input解决方法
程序员文章站
2022-06-12 15:05:28
...
基础php input
1.htm页面
查 询
1.php页面
$find = $_G['gp_find'];
$tt = $find;
sql查询语句.....
请问如何能实现客户在input输入,然后点击查询,就直接跳转到 ( 123.php?f=客户输入的内容 )这样的页面
如何取值呢?
------解决方案--------------------
表单的action='123.php',METHOD=get,用$_GET['表单变量名']取值。
如果不想让浏览器显示参数值或者参数值大于2k,METHOD=post,并用$_POST[]取值.
------解决方案--------------------
http://www.baidu.com?id=1&wd="+document.getElementById("find").value,"_blank"
引号不能乱用
"http://www.baidu.com?id=1&wd="+document.getElementById("find").value,"_blank"
查 询
1.htm页面
查 询
1.php页面
$find = $_G['gp_find'];
$tt = $find;
sql查询语句.....
请问如何能实现客户在input输入,然后点击查询,就直接跳转到 ( 123.php?f=客户输入的内容 )这样的页面
如何取值呢?
------解决方案--------------------
表单的action='123.php',METHOD=get,用$_GET['表单变量名']取值。
如果不想让浏览器显示参数值或者参数值大于2k,METHOD=post,并用$_POST[]取值.
------解决方案--------------------
http://www.baidu.com?id=1&wd="+document.getElementById("find").value,"_blank"
引号不能乱用
"http://www.baidu.com?id=1&wd="+document.getElementById("find").value,"_blank"
查 询
相关文章
相关视频
推荐阅读
-
PHP中__autoload和Smarty冲突的简单解决方法
-
PHP使用PDO操作数据库的乱码问题解决方法
-
Laravel访问出错提示:`Warning: require(/vendor/autoload.php): failed to open stream: No such file or di解决方法
-
iOS 报clang: error: no input files错误的解决方法
-
PHP错误提示It is not safe to rely on the system……的解决方法
-
php ci 获取表单中多个同名input元素值的代码
-
php运行提示Can't connect to MySQL server on 'localhost'的解决方法
-
php后台经常提示无法连接mysql 刷新后又可以访问的解决方法
-
php post大量数据时发现数据丢失问题解决方法
-
Android WebView 不支持 H5 input type="file" 解决方法