我的网址是
http://localhost/helpinghand_web/home/userAutologin?tval=Eo7TIhTJqQnfysn8mwu2nXOQ0yJvY36hprJ99GJH9NBZHTh1LU&page=profile
有两个参数tval和page我怎么能得到它。 以下不起作用..
$var=$_GET['tval'];
$var=$this->input->get('tval');
答案 0 :(得分:1)
使用此
$tval = $this->input->get('tval');
$page = $this->input->get('page');
答案 1 :(得分:0)
您可以使用:
$params = $this->input->get(null, true);
通过所有参数,然后使用:
$params['tval']
答案 2 :(得分:0)
您可以使用$ tval = $ this-> input-> get('tval')获取单个数据& $ tval = $ this-> input-> get()用于以数组格式获取singel变量中的所有日期。
答案 3 :(得分:0)
select_tag "categories", options_from_collection_for_select(Category.all, "id", "name")
如果您致电www.example.com?tval=1100,它将回显1100,前提是主页
I managed the query you can use it.