如何将 get 变量从我的视图传递给控制器和模型并再次加载到我的视图而不使用类似的表单
$jcid= $row['id']; // this id from other table which is parent.
$s = "SELECT * FROM `jobs` WHERE job_cat=$jcid";
$re = mysql_query($s);
$no = mysql_num_rows($re);
echo $no;
提前致谢
阿米特
如何将 get 变量从我的视图传递给控制器和模型并再次加载到我的视图而不使用类似的表单
$jcid= $row['id']; // this id from other table which is parent.
$s = "SELECT * FROM `jobs` WHERE job_cat=$jcid";
$re = mysql_query($s);
$no = mysql_num_rows($re);
echo $no;
提前致谢
阿米特
首次使用
$this->load->helper('url');
接着
$data['$jcid'] = $this->uri->segment(3);
而不是像这样使用 get param 使用
这可以是您的表单网址
http://example.com/index.php/news/local/metro/crime_is_up
$this->uri->segment(3); // Will give you news
明智地用 4 代替 3 会为您提供 Metro 等。您可以在控制器中访问它。
codeigniter 中的 Uri 类
http://ellislab.com/codeigniter/user-guide/libraries/uri.html