Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
260 views
in Q2A Core by
how can i use strtolower function?
by
What do you mean "how do I use?" Are you looking for the documentation? https://www.php.net/manual/en/function.strtolower.php
by
i want to convert all words, text vb. to lowercase with php code not with css, i want to real convert. when i look into to database, it will be lowercase
by
+2
I wouldn't recommend doing that. Unless you have very compelling reasons to do so it's generally advisable to keep input data as-is and only (re-)format when displaying data.
With that said, from what I see you'd have to either patch core functions in qa-include/app/post-create.php (not recommended) or patch your editor plugin to lowercase text on submit in order to achieve the desired result.

Please log in or register to answer this question.

...