0

我正在尝试使用 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 ,因为将事物保持在一种格式确实对我有帮助。

4

1 回答 1

1

在这里查看我的答案:

如何在codeigniter中制作动态表单动作地址?

您可以选择两种解决方案 - 使用或不使用 JavaScript,我认为第二种适合您。

于 2012-08-27T17:39:55.567 回答