在CodeIgniter中传递get变量

时间:2013-07-24 06:16:17

标签: codeigniter

如何将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;

提前致谢

阿米特

2 个答案:

答案 0 :(得分:0)

而不是像这样使用get param

这可以是您的表单网址

http://example.com/index.php/news/local/metro/crime_is_up

$this->uri->segment(3); // Will give you news

同样明智的代替3替换4将给你地铁等。您可以在控制器中访问它。

codeigniter中的Uri类

http://ellislab.com/codeigniter/user-guide/libraries/uri.html

答案 1 :(得分:0)

首次使用

$this->load->helper('url');

然后

$data['$jcid'] = $this->uri->segment(3);