POST vars使用codeigniter生成一般错误

时间:2012-04-13 10:12:31

标签: php codeigniter

当我尝试通过post方法传递vars时,会生成以下codeigniter错误“GENERAL_ERROR”。

1 个答案:

答案 0 :(得分:0)

这是一个非常简单的例子

控制器/ test_form.php

<?php
class Test_form extends CI_Controller
{
    public function __construct()
    {
        parent::__construct();
    }

    public function index()
    {
        if ($this->input->post())
        {
            print_r($this->input->post());
        }

        $this->load->view('test_form');
    }
}

视图/ test_form.php

<form action="test_form" method="post">
    <input type="text" name="test_field_one" />
    <button type="submit">Go!</button>
</form>

也许你的代码中有某个拼写错误但没有看到它,虽然我在黑暗中刺伤了东西。