Log in

View Full Version : Resolved uppercase to lowercase



auriaks
11-25-2009, 01: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, 02:00 PM
$nick = 'ALL IN UPPER CASE, ANNOYING CAPS LOCK';

$lower = strtolower($nick);

echo $lower;

auriaks
11-25-2009, 02:05 PM
Thanks for speedy answer :)

auriaks
11-25-2009, 02:10 PM
But not working

Schmoopy
11-25-2009, 02:13 PM
How do you mean? Link your code and I'll take a look.

auriaks
11-25-2009, 02:16 PM
$neck = $_POST['nick'];
$nick = strtolower($neck);

all the code is too long

Schmoopy
11-25-2009, 04:01 PM
What's it outputting?

The code you've posted should work.

auriaks
11-25-2009, 04:03 PM
then i insert it into mysql, and it come with uppercase

Schmoopy
11-25-2009, 04: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, 04:11 PM
Yea :) my bad... Thanks