You can use the function strtolower(); to put all the characters in a string lowercase.
Here is an example:
<?php echo strtolower("HELLO! This script is SO cool!\"); ?>
Now, strtoupper does exactly the opposite.
Example
<?php echo strtouppoer("HELLO! This script is SO cool!\"); ?>
Comments
Post new comment