基础php input解决方法
程序员文章站
2022-05-29 21:52:52
...
基础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 post大量数据时发现数据丢失问题解决方法
-
Android WebView 不支持 H5 input type="file" 解决方法
-
PHP IE中下载附件问题解决方法
-
win7 wamp 64位 php环境开启curl服务遇到的问题及解决方法
-
php语法基础知识(php详细安装步骤)
-
编译PHP报错configure error Cannot find libmysqlclient under usr的解决方法
-
php采用curl访问域名返回405 method not allowed提示的解决方法
-
PHP执行Curl时报错提示CURL ERROR: Recv failure: Connection reset by peer的解决方法
-
php输入流php://input使用示例(php发送图片流到服务器)
-
php缩小png图片不损失透明色的解决方法