PHP实现搜索时记住状态的方法示例
程序员文章站
2023-09-03 08:02:28
本文实例讲述了php实现搜索时记住状态的方法。分享给大家供大家参考,具体如下:
本文实例讲述了php实现搜索时记住状态的方法。分享给大家供大家参考,具体如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>php of search remember state</title> </head> <!--方式一 模版获取get参数方式记住条件--> <php> $start = $_get['start']; $end = $_get['end']; </php> <!--方式二 dom加载方式传递条件--> <php> $search = $_get['search']; </php> <script type='text/javascript'> //dom加载结束 $(function(){ {if:$this->search} var searchdata = {echo:json::encode($this->search)}; for(var index in searchdata) { $('[name="search['+index+']"]').val(searchdata[index]); } {/if} }); </script> <body> <!--方式一 模版获取get参数方式记住条件--> 时间:<input type="text" name='start' value='{$start}' /> —— <input type="text" value="{$end}" name='end' /> <!--方式二 dom加载方式传递条件--> 姓名:<input name="search[username]" type="text" value="" /> 电话:<input name="search[telphone]" type="text" value="" /> </body> </html>
补充:
此外还需要注意,普通的get请求形如:http://yourwebname.com/index.php?ids=1&ids=2 可传递对应的单个参数
而使用形如:http://test.tmp/index.php?ids[]=1&ids[]=2 的形式可传递数组参数
更多关于php相关内容感兴趣的读者可查看本站专题:《php数据结构与算法教程》、《php程序设计算法总结》、《php+ajax技巧与应用小结》、《php网络编程技巧总结》、《php字符串(string)用法总结》、《php数组(array)操作技巧大全》及《php常用遍历算法与技巧总结》
希望本文所述对大家php程序设计有所帮助。