0
我試圖用form_input把這種「搜索」的方法:使用form_input通過URL傳遞信息?
-- controller
function search($item_to_search, $page_to_display)
{
//do this and that
}
-- view
<?php
echo form_open("admin/admin_product_c/search/[words come here]/0"); <-- no clue what to do here..
echo form_input('search_data', 'Type the words to search');
//submit button here
?>
點擊提交按鈕,這樣我可以通過URL傳遞值時,有沒有一種方法來填寫並完成form_open?如果可能的話,我希望避免在這種情況下使用Session/POST,因爲將事物保存爲一種格式確實可以幫助我。
是的,我選擇了第二個:) Thx – Raccoon