http://php.flashwebhost.com/sherly/friend.php
Code:$string_Quotes = 'A friend is someone who knows all about you and still loves you'; $string_Quotes = ucfirst($string_Quotes); echo $string_Quotes;
http://php.flashwebhost.com/sherly/friend.php
Code:$string_Quotes = 'A friend is someone who knows all about you and still loves you'; $string_Quotes = ucfirst($string_Quotes); echo $string_Quotes;
Last edited by sherlyk; 05-10-2014 at 06:28 AM.
http://php.flashwebhost.com/annie/test.php
Code:<?php $actressName = 'Meera jasmine'; $actressName = str_replace ('jasmine', 'Anil John', $actressName); echo $actressName;
Convert Text to Upper Case.
http://php.flashwebhost.com/vineesh/day3/strtoupper.php
Code
Convert Text to Lower Case.Code:<?php $name = 'Vineesh Mohan'; $place = 'Kodamthuruth'; $city = 'Alappuzha'; echo strtoupper($name) . '<br>'; echo strtoupper($place) . '<br>'; echo strtoupper($city);
http://php.flashwebhost.com/vineesh/day3/strtolower.php
Code
Code:<?php $name = 'Vineesh Mohan'; $place = 'Kodamthuruth'; $city = 'Alappuzha'; echo strtolower($name) . '<br>'; echo strtolower($place) . '<br>'; echo strtolower($city) ;
Convert First Letter of Words to Upper Case
http://php.flashwebhost.com/vineesh/day3/ucwords.php
code
Code:<?php $color = 'my favourite color is white'; $food = 'my favourite food is biriyani'; echo ucwords($color) . '<br>'; echo ucwords($food);
http://php.flashwebhost.com/stefin/sentence.php
Code:<?php $sentence = 'have a nice day!!' ; echo strlen($sentence) ;
http://php.flashwebhost.com/stefin/dragon.php
Code:<?php $myWolf = 'I have a pet shadow wolf'; $myWolf = ucwords($myWolf); echo $myWolf; echo '<br>' ; $myDragon = 'I Have A Lightning Dragon'; $myDragon = ucwords($myDragon); echo $myDragon;
Bookmarks