Codeigniter表格不会发布

时间:2014-04-12 14:08:59

标签: php codeigniter

出于某种原因,我无法在Codeigniter 2.1.4中发布表格,老实说,我不知道哪里出错了。谁能看到任何明显的问题?没有任何后期数据只返回vardump返回的空表格(布尔值为假)

public function testpost()
{
    $this->load->helper(array('form', 'url'));
    $this->load->library('form_validation');

    var_dump($this->input->post());

    $this->form_validation->set_rules('testt', 'Test', 'required');

    if ($this->form_validation->run() == FALSE)
    {
        echo validation_errors();
        echo form_open('test/testpost');
        echo form_input(array('type'=>'text', 'id'=>'testt'));
        echo form_submit(array('value' => 'submit'));
        echo form_close();
    }
    else
    {
        echo "true";
    }
}

1 个答案:

答案 0 :(得分:-1)

您没有创建文本字段的名称。

echo form_input(array('type'=>'text', 'id'=>'testt', 'name'=>'testt'));