我正在尝试使用 form_input 调用此“搜索”方法:
-- 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
?>
有没有办法在单击提交按钮时填写并完成 form_open 以便我可以通过 URL 传递值?如果可能的话,我想避免在这种情况下使用 Session / POST ,因为将事物保持在一种格式确实对我有帮助。