ยป Smart Phones, Web Design, Google or whatever
Posts tagged ph
Using PHP to convert a string to lowercase
Jul 15th
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.