What is the best method to strip htnl tags from the input?
How can i remove the HTML tags while validating the input
$this->form_validation->set_rules('description', 'Description', 'trim|xss_clean');
Do I need to add custom call back method to validation rules?