View Full Version : Resolved uppercase to lowercase
auriaks
11-25-2009, 12:57 PM
hi,
is there php to automatically convert uppercase letters to lowercase?
or detect... (i have variable $nick which i want to get only lowercased)
Schmoopy
11-25-2009, 01:00 PM
$nick = 'ALL IN UPPER CASE, ANNOYING CAPS LOCK';
$lower = strtolower($nick);
echo $lower;
auriaks
11-25-2009, 01:05 PM
Thanks for speedy answer :)
auriaks
11-25-2009, 01:10 PM
But not working
Schmoopy
11-25-2009, 01:13 PM
How do you mean? Link your code and I'll take a look.
auriaks
11-25-2009, 01:16 PM
$neck = $_POST['nick'];
$nick = strtolower($neck);
all the code is too long
Schmoopy
11-25-2009, 03:01 PM
What's it outputting?
The code you've posted should work.
auriaks
11-25-2009, 03:03 PM
then i insert it into mysql, and it come with uppercase
Schmoopy
11-25-2009, 03:05 PM
I'll need to see more of the code, make sure you're not directly inserting just $_POST['nick'].
auriaks
11-25-2009, 03:11 PM
Yea :) my bad... Thanks
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.