PLEASE DISREGARD. Was modifying wrong event
Hello. My client has been accustomed to entering all data in the data entry form in uppercase characters. However, I would prefer that the email address be converted to lowercase characters.
What I have done is this:
Event Editor / Add Page / Before record Added
I inserted this code:
$values["email"]=strtolower($values["email"]);
After the record is saved, the email still displays in uppercase.
Thank you