Suppose that you have a text string which contains many uppercase letters, and you want to make the string entirely lower. The code below will show you can do this with PHP.
The Code
1 2 3 |
<?php echo strtolower('PIZZA IS GOOD'); //prints out 'pizza is good' ?> |