String to Lowercase Script

String to Lowercase Script can convert all capital letter or small letter to small letter.

Demo :



Type Text  

Example :

WHAT IS STRING CONVERSION ?

If you need to convert string to lowercase letter following code useful to you.


<?php
  $stringCon = "string to lowercase";
  $result = strtolower($stringCon);
  echo $result;
?>

In the above code is used to convert string to lower case letter. The 'string to lowercase' this string stored in $stringCon variable.Then strtolower() function is convert "STRING TO LOWERCSAE" letter to "string to lower case" letter.

<form id="strtolower" name="strtolower" method="post" action="" onsubmit="return validate()">
<input type="text" id="lower_case" name="lower_case"/>
<input type="submit" value="Convert"/>
</form>

In the above form is used to convert letter to lower case letter.when click Convert button in the form will pass the string through POST method and the string will be convert to lower case using the strtolower() predefined function.

Free Download Script :

If you need String to Lowercase Script click and download from following link.

Download




Content