At times you may need to change a string to all lowercase letters, here is the way to do that (2 samples including one practical application):

SYNTAX: string strtolower (string $mystring);

$myLowercaseString = strtolower ($mystring);

As with all PHP, test to make sure you’ve implemented correctly. Comments, questions or suggestions? Please leave a comment.