Hi,

http://php.flashwebhost.com/annie/ucfirst.php



Code:
<?php
$myMobile = 'i have a samsung galaxy s3';
$myMobile = ucwords ($myMobile);
echo $myMobile;
echo '<br>';

$myCar = 'i have a red car' ;
$myCar = ucwords ($myCar);
echo $myCar;
echo '<br>';

$bestFilm = 'RAAMJI RAO SPEAKING';
$bestFilm = ucwords ($bestFilm);
echo $bestFilm;