作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 Controller 代码
$data['query']= $this->webpages->get_where_custom('parent_id',0);
// i will get $id from view
$data['query']=$this->webpages->get_where_custom('parent_id',$id);
$this->load->view-(template,$data);
在 View 代码中,我将发送 $id 到 Controller ,但它显示 undefined variable “id”
<?php
foreach($query->result() as $row){
$id=$row->id; // how to send this $id to my controller
$page_url=$row->page_url;
$parent_id=$row->parent_id;
$page_headline=$row->page_headline;
foreach($query->result() as $row){
$page_url=$row->page_url;
$page_headline=$row->page_headline;
?>
echo $page headline;
}
}
最佳答案
安装:
$this->load->view-(template,$data);
尝试:
$this->load->view(template,$data);
关于php - 如何将值从 View 传递到 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21428709/
我是一名优秀的程序员,十分优秀!