I am creating a validation script which is way more advanced than this little section, I am just printing the specific part I am having issues with.
The script simply takes in a single dimensional array with a list of settings, performs required tests and spits out a multidimensional array with the required string, all clean free of badness.
For some reason the trim() strip_tags() strip_html_tags() functions are working but failing at the same time. By this I mean the string is passed through the functions and showing as clean but the built-in PHP functions aren't working as expected.
The question is do the built in functions only work on text that is directly output to the user or should the functions work pre output ie as it is being output not while being stored in a database?
I'm looking to strip all script tags as the user inputs so I only have the plain text.
I was wanting to use a switch with each statement which I have the functions below are snippets from switch statements.
What I am trying to use which doesn't work as expected.
function check_input1($input)
{
if(trim($input))
{
$cleaninput[$i][$input] = 'CLEAN';
}else
$cleaninput[$i][$input] = 'DIRTY';
}
function check_input2($input)
{
if(strip_tags($input))
{
$cleaninput[$i][$input] = 'CLEAN';
}else
$cleaninput[$i][$input] = 'DIRTY';
}
function check_input3($input)
{
if(strip_html_tags($input))
{
$cleaninput[$i][$input] = 'CLEAN';
}else
$cleaninput[$i][$input] = 'DIRTY';
}
What I know works directly output in html elements.
strip_tags(trim($key))
strip_tags(trim($value))
<sarcasm>Yea, right</sarcasm>into a text box, they're obviously not trying to inject HTML tags. They expect your app to accept the strings as text, store them, and render them as the user typed them. Using your method, you're changing what the user types into something they didn't type, for over-zealous false security. – meagar Sep 21 '12 at 14:43