I'm using DA to insert a new user record into MySQL table.
I have the form configured so each word typed into each field is 'capitalized' using 'text-transform:capitalize', however the insert process does not keep that 'capitalized' format and inserts all in lowercase.
Here are the two fields i wish to insert as 'capitalize'
GetSQLValueString($_POST['fname'], "text"),
GetSQLValueString($_POST['lName2'], "text"),
Any ideas please?
Thank you.
Paul
Your changing the style of the displayed text -- that isn't changing the actual data. Look up the PHP functions 'ucfirst' or 'ucwords'. . .