嘿伙计们,我是codeigniter的新手,我有这样的表格
<form class="addinvestmentform" action="<?php echo base_url();?>index.php/ctl_dbcont/input_investment/$id" name="application" method="post" >
//some code
</form>
我有一个控制器方法
function input_investment($id)
{
$this->load->helper('form');
$this->load->helper('html');
$this->load->model('mod_user');
$this->mod_user->insertinvestment($id);
}
我想从表单操作获取 $id 到控制器方法我该怎么做。. 请帮助我 。.