hi,
is there php to automatically convert uppercase letters to lowercase?
or detect... (i have variable $nick which i want to get only lowercased)
hi,
is there php to automatically convert uppercase letters to lowercase?
or detect... (i have variable $nick which i want to get only lowercased)
Last edited by auriaks; 11-25-2009 at 04:13 PM.
PHP Code:$nick = 'ALL IN UPPER CASE, ANNOYING CAPS LOCK';
$lower = strtolower($nick);
echo $lower;
auriaks (11-25-2009)
Thanks for speedy answer![]()
But not working
How do you mean? Link your code and I'll take a look.
$neck = $_POST['nick'];
$nick = strtolower($neck);
all the code is too long
What's it outputting?
The code you've posted should work.
then i insert it into mysql, and it come with uppercase
I'll need to see more of the code, make sure you're not directly inserting just $_POST['nick'].
Yeamy bad... Thanks
Bookmarks