How To Make String Into Lower Case Letters In PHP
Post Description: how to make string into lower case letters in php
how, to, make, string, into, lower, case, letters, in, php
This Post Has Been Viewed 157 Times Since Fri Feb 29, 2008 12:01 pm Posted By web hosting with 0 replies
POST# 466
Posted On: Fri Feb 29, 2008 12:01 pm
Topic: How To Make String Into Lower Case Letters In PHP
to make your letters in a string to lower case you can use the strtolower() php function
$string = "HIGH CAPS";
echo "strtolower($string)";
OUTPUT: high caps
this is a great way to make caps letter into smaller letters
No Repies