Welcome Guest, Not a member yet? Register   Sign In
HELP! disable html in textarea
#1

[eluser]codedoode[/eluser]
The title pretty much tells it all. I'm trying to disable the use of html in a textarea. Can anyone shed some light on this subject? Thanks in advance.

this is my controller
Code:
function create()
    {
        $data = array(
            'content' => $this->input->post('content')
        );

        $stripped = strip_tags($data);
        $this->site_model->add_record($data);
        $this->index();
    }

this is my model
Code:
function add_record($data)
    {
        $this->db->insert('data', $data);
    }

what am I doing wrong?


Messages In This Thread
HELP! disable html in textarea - by El Forum - 05-20-2010, 09:15 AM
HELP! disable html in textarea - by El Forum - 05-20-2010, 09:21 AM
HELP! disable html in textarea - by El Forum - 05-23-2010, 10:00 AM
HELP! disable html in textarea - by El Forum - 05-23-2010, 01:22 PM
HELP! disable html in textarea - by El Forum - 05-23-2010, 01:23 PM
HELP! disable html in textarea - by El Forum - 05-23-2010, 01:42 PM
HELP! disable html in textarea - by El Forum - 05-23-2010, 01:48 PM
HELP! disable html in textarea - by El Forum - 05-23-2010, 01:55 PM
HELP! disable html in textarea - by El Forum - 05-23-2010, 02:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB