RE: [PHP] change letter to all caps

2005-07-18 Thread Jay Blanchard
[snip]
Lets say I have a form. And when user types in the form and clicks go, 
it shows output.
but.
lets say the person type in
monday
But I want the php code to change it too
MONDAY
how do I do that?
[/snip]

http://www.php.net/strtoupper

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] change letter to all caps

2005-07-18 Thread webmaster
$uppercasestring=strtoupper($originalstring);

- Original Message - 
From: George B [EMAIL PROTECTED]
To: php-general@lists.php.net
Sent: Monday, July 18, 2005 6:59 PM
Subject: [PHP] change letter to all caps


 Lets say I have a form. And when user types in the form and clicks go, 
 it shows output.
 but.
 lets say the person type in
 monday
 But I want the php code to change it too
 MONDAY
 how do I do that?
 Thanks!
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] change letter to all caps

2005-07-18 Thread John Nichel

George B wrote:
Lets say I have a form. And when user types in the form and clicks go, 
it shows output.

but.
lets say the person type in
monday
But I want the php code to change it too
MONDAY
how do I do that?


The manual is your friend.

http://us2.php.net/manual/en/function.strtoupper.php

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] change letter to all caps

2005-07-18 Thread eoghan

Hi

On 18 Jul 2005, at 18:59, George B wrote:

Lets say I have a form. And when user types in the form and clicks  
go, it shows output.

but.
lets say the person type in
monday
But I want the php code to change it too
MONDAY
how do I do that?
Thanks!


have a look here:
http://ie2.php.net/manual/en/function.strtoupper.php

eoghan

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php