Page 1 of 1

insert with lowercase

Posted: 2020-06-17 20:34
by patsd102
Anyone want to share a code to insert an entry with lowercase letters only,

Thanks in advance

pat

Re: insert with lowercase

Posted: 2020-06-17 22:21
by D Oliveira
hooks/tablename.php -> after insert & after update functions, here are your options:

php

Code: Select all

<?php
echo strtolower("Hello WORLD.");
?>
js

Code: Select all

var str = "Hello World!";
var res = str.toLowerCase();
.css

Code: Select all

div {
  text-transform: lowercase;
}


Re: insert with lowercase

Posted: 2020-06-18 17:22
by patsd102
Many thanks D Oliveira

I was really looking to keep a single field in lower case

The rest are not so important,

I will try your examples in the hooks folder,

Pat