Мне нужна помощь по использованию form_dropdown в проекте Codeginiter.
Просмотр файла: код my_test.php как этот,
<?php
// basic filter form
$attributes = array('class' => 'formstyle', 'id' => 'myfilterform');
echo form_open('mytest/send', $attributes);
$options = array(
'all' => 'Pls Select Filter',
'male' => 'Male List',
'female' => 'Female List',
);
echo form_dropdown('myfilter', $options, 'male');
echo form_submit('myfiltersubmit', ' GO ');
$string = "</div></div>";
echo form_close($string);
?>
Контроллеры хранят код mytest.php как этот,
function index()
{
$data['title'] = "Hello";
$this->load->view('my_test', $data);
}
function send()
{
$mypostdata = $_POST['options']; // I can't get the post data here.
echo $mypostdata;
}
Я прочитал часть form_dropdown в CI UserGuide. к сожалению, я не нашел, как обрабатывать данные в send()
. Благодаря.