Hi there,
Some users, are asking question in full uppercase like this : "MY QUESTION TITLE". Is there any way to put titles everywhere like this => "My Question Title"
Thanks, I can't find how!
http://www.php.net/manual/en/function.ucfirst.php
$bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world!
http://www.php.net/manual/en/function.ucwords.php
$bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World!
I have not used these function.
And, http://www.question2answer.org/modules.php?module=filter
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.