http://php.flashwebhost.com/sherly/bizhat.php
Code:<?php $string1 = 'WELCOME TO BIZHAT.COM'; echo strtolower($string1);
http://php.flashwebhost.com/sherly/bizhat.php
Code:<?php $string1 = 'WELCOME TO BIZHAT.COM'; echo strtolower($string1);
DAY 3 PHP PROGRAMMING
http://php.flashwebhost.com/tom/strlen.php
Code:<?php $movieName = 'Peruvannapurathe Visheshangal' ; echo strlen($movieName) ;
Become PHP Expert in 30 days
FreeMarriage.com - Free Online Matrimonial
FlashWebHost.com - Professional Web Hosting, Designing.
http://php.flashwebhost.com/sherly/pen.php
Code:<?php $myPen = 'I have a blue pen'; $myPen = ucwords($myPen); echo $myPen; echo '<br>'; $myPencil = 'I HAVE A GREEN PENCIL'; $myPencil = ucwords($myPencil); echo $myPencil;
Last edited by sherlyk; 05-10-2014 at 03:34 PM.
DAY 3 PHP PROGRAMMING
http://php.flashwebhost.com/tom/strtoupper.php
Code:<?php $movieName = 'Drishyam' ; $banner = 'Aashirvad Cinemas' ; $director = 'Jeethu Joseph' ; echo strtoupper($movieName) ; echo '<br>'; echo strtoupper($banner) ; echo '<br>'; echo strtoupper($director) ;
http://php.flashwebhost.com/sherly/kitty.php
Code:<?php $myCat = 'I love my kitty'; $myCat = str_replace('kitty', 'puppy', $myCat); echo $myCat;
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;
DAY 3 PHP PROGRAMMING
http://php.flashwebhost.com/tom/strtolower.php
Code:<?php $studentName = 'Tina' ; $schoolName = 'Bishop Moore'; $class = 'LKG' ; echo strtolower($studentName); echo '<br>'; echo strtolower($schoolName); echo '<br>'; echo strtolower($class) ;
Bookmarks