I just started using codeigniter, and i would like to perform input formatting using 1 function.
Code i would like implemeneted on my input:
function sanitize ($string)
{
$string = filter_var($string, FILTER_SANITIZE_STRING);
$string = trim($string);
$string = stripslashes($string);
$string = strip_tags($string);
return $string;
}
My Question is:
Does codeigniter perform these actions by default when i use the input class? Or do i need to create a custom function to filter my input.
My Goal is:
Clean and secure user input on forms and trim spaces in it.