如何通過從我的觀點得到變量的控制器和模型也再裝到我的觀點 無需使用形式的像傳得變量笨
$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;
在此先感謝
阿米特
如何通過從我的觀點得到變量的控制器和模型也再裝到我的觀點 無需使用形式的像傳得變量笨
$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 PARAM使用這樣
的這可能是你的表單URL
http://example.com/index.php/news/local/metro/crime_is_up
$this->uri->segment(3); // Will give you news
像代替3 4取代明智會給你地鐵等。你可以在控制器中訪問它。
在笨Uri類
http://ellislab.com/codeigniter/user-guide/libraries/uri.html
首先使用
$this->load->helper('url');
然後
$data['$jcid'] = $this->uri->segment(3);
如果你詢問如何獲取得到的變量,你可能想看看這個。 http://ellislab.com/forums/viewthread/139807/#689150 –
你的問題不清楚。 –
我有一個根據工作類別添加工作的工作類別列表,所以我做了2個工作表,即job_cat和job_cat中的工作,我已經從那個工具提取了所有的值現在我想要特定工作的計數,說特定工作itjobs (0)如果作業中沒有作業tbl如果它們應該更新爲1或更多,因爲作業是他們的作業類別。所以我想通過它的pkey工作tbl有foregin關鍵字我應該怎麼做codeigniter感謝耐心閱讀我的描述 – user2610240