Current location: Hot Scripts Forums » Programming Languages » PHP » first word uppercase and yellow text with following words lowercase and blue text?


first word uppercase and yellow text with following words lowercase and blue text?

Reply
  #1 (permalink)  
Old 07-15-05, 07:07 PM
Tim Mousel Tim Mousel is offline
Wannabe Coder
 
Join Date: Jan 2005
Posts: 157
Thanks: 0
Thanked 0 Times in 0 Posts
first word uppercase and yellow text with following words lowercase and blue text?

Hi,

Change first word to uppercase and yellow text with following words lowercase and blue text?

$string = "This IS IT";

What is the best way to change the string to this?

THIS is it

Thanks in advance,

Tim
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 07-16-05, 03:43 AM
wizkid's Avatar
wizkid wizkid is offline
Newbie Coder
 
Join Date: Nov 2004
Posts: 57
Thanks: 0
Thanked 0 Times in 0 Posts
PHP Code:

<?

$mystring 
"This IS IT";
$pos strpos($mystring" ");
$mystring strtoupper(substr($mystring,0,$pos)) . strtolower(substr($mystring,$pos));
print 
$mystring;
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 07-16-05, 05:53 PM
Tim Mousel Tim Mousel is offline
Wannabe Coder
 
Join Date: Jan 2005
Posts: 157
Thanks: 0
Thanked 0 Times in 0 Posts
wizkid, thank you very, very much!! That worked great!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 11:05 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.