嘿,伙计们只是想将一些东西传递到我的控制器中。使用codeigniter,下面的表格实际上并没有将我重定向到任何地方,有什么问题?
我的第二个问题是如何简单地获取控制器中的数据..?
$data = $this->input->$post('search');
<?php
$options = array(
'small' => 'Small Shirt',
'med' => 'Medium Shirt',
'large' => 'Large Shirt',
'xlarge' => 'Extra Large Shirt',
);
$shirts_on_sale = array('small', 'large');
echo form_dropdown('shirts', $options, 'large');
?>
<form action="<?php echo site_url('home/id_search');?>" method="post"><input type="submit" value="submit" id="" name="" >
</form>