How To Make Capital Letters In Php Capitalise Words

Mobile
feeds
Welcome Login | Register

How To Make Capital Letters In Php Capitalise Words
  Forums Index
      » PHP Forums
        » » how to make capital letters in php capitalise words



How To Make Capital Letters In Php Capitalise Words
Post Description:
Post Tags: how, to, make, capital, letters, in, php, capitalise, words, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 1101 Times Since Mon Feb 25, 2008 8:28 am Posted By hostman with 1 replies
Next Post »» how to make capital letters with CSS style capitalise words
How To Make Capital Letters In Php Capitalise Words

ucwords()



to capitalize a word you use the ucwords() function.

lest say i want to capitalise this: wallpaperama is cool

i can use this:

<?php
$word = "wallpaperama is cool";

echo ucwords($word);

?>


the output will be:
Wallpaperama Is Cool





Leave Your Comments






Share
URL:
You can use this HTML code to put it on your website to show your friends this wallpaper. Use this code on your profile like myspace, friendster, Facebook or others. Just Copy and Paste it in your HTML on your websites



Fourms BBCODE:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums





Comments and replies About How To Make Capital Letters In Php Capitalise Words




:: 1 :: Reply #82623 Reply By Roger On Sat Nov 22, 2008 3:47 am
great tips! thanks! :)