[PHP] Forcing Case

2001-04-14 Thread midget2000x

Is there any way to force case...like if I have a string and want it to appear
in all lowercase (or uppercase, God forbid)?

Thanks,

Rory
 ---
providing the finest in midget technology

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Forcing Case

2001-04-14 Thread James Moore

RTFM:

http://www.php.net/manual/en/function.strtoupper.php
http://www.php.net/manual/en/function.strtolower.php
http://www.php.net/manual/en/function.ucfirst.php

- James

 -Original Message-
 From: midget2000x [mailto:[EMAIL PROTECTED]]
 Sent: 14 April 2001 08:16
 To: [EMAIL PROTECTED]
 Subject: [PHP] Forcing Case
 
 
 Is there any way to force case...like if I have a string and want 
 it to appear
 in all lowercase (or uppercase, God forbid)?
 
 Thanks,
 
 Rory
  ---
 providing the finest in midget technology
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Forcing Case

2001-04-14 Thread Christian Reiniger

On Saturday 14 April 2001 09:15, you wrote:
 Is there any way to force case...like if I have a string and want it to
 appear in all lowercase (or uppercase, God forbid)?

http://www.php.net/strtolower

-- 
Christian Reiniger
LGDC Webmaster (http://sunsite.dk/lgdc/)

...1000100011010101101010110100111010113...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Forcing Case

2001-04-14 Thread Brian Clark

Hi James,

@ 6:44:08 AM on 4/14/2001, James Moore wrote:

...
 http://www.php.net/manual/en/function.strtoupper.php
 http://www.php.net/manual/en/function.strtolower.php
 http://www.php.net/manual/en/function.ucfirst.php

Another extremely useful one is ucwords()

http://www.php.net/manual/en/function.ucwords.php

:)

-Brian
--
 PGP is spoken here: 0xE4D0C7C8
 Please, DO NOT carbon copy me on list replies.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]