JQuery Ajax POST in Codeigniter

后端 未结 5 1034
情深已故
情深已故 2020-12-09 18:58

I have searched a lot of tutorials with POST methods and saw answered questions here too but my POST still doesn\'t work...I thought i should post it here if you guys see so

5条回答
  •  再見小時候
    2020-12-09 19:38

    The question has already been answered but I thought I would also let you know that rather than using the native PHP $_POST I reccomend you use the CodeIgniter input class so your controller code would be

    function post_action()
    {   
        if($this->input->post('textbox') == "")
        {
            $message = "You can't send empty text";
        }
        else
        {
            $message = $this->input->post('textbox');
        }
        echo $message;
    }
    

提交回复
热议问题