0

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

提前致谢

阿米特

4

2 回答 2

0

首次使用

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

接着

$data['$jcid'] = $this->uri->segment(3);
于 2013-07-29T09:12:02.093 回答
0

而不是像这样使用 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

于 2013-07-24T06:43:24.117 回答