insert with lowercase
Posted: 2020-06-17 20:34
Anyone want to share a code to insert an entry with lowercase letters only,
Thanks in advance
pat
Thanks in advance
pat
A place where AppGini users can exchange ideas and help each other.
https://forums.appgini.com:443/phpbb/
https://forums.appgini.com:443/phpbb/viewtopic.php?f=7&t=3704
Code: Select all
<?php
echo strtolower("Hello WORLD.");
?>
Code: Select all
var str = "Hello World!";
var res = str.toLowerCase();
Code: Select all
div {
text-transform: lowercase;
}