I cannot convert to lower case

Hi can someone help me on this I am submitting my form and I want my username to convert into smaller case.but it’s not working

$username = filter_input(INPUT_POST,strtolower('username'),FILTER_SANITIZE_STRING); 

still I cannot convert to lower case

Thank you in advance.

Hi jemz,

The second argument passed to filter_input is just a string that tells the function which variable to look for. Running strtolower on that string won’t affect the case of the variable’s value. You’ll need to call strtolower on the output from filter_input.

Thank you :slight_smile:

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.