http://php.flashwebhost.com/sherly/mother.php
Code:<?php $str = 'Mother is the name for God in the lips and hearts of little children'; $str = strtoupper($str); echo $str; // MOTHER IS THE NAME FOR GOD IN THE LIPS AND HEARTS OF LITTLE CHILDREN
http://php.flashwebhost.com/sherly/mother.php
Code:<?php $str = 'Mother is the name for God in the lips and hearts of little children'; $str = strtoupper($str); echo $str; // MOTHER IS THE NAME FOR GOD IN THE LIPS AND HEARTS OF LITTLE CHILDREN
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;
I got error http://php.flashwebhost.com/sherly/school.php
Code:Fatal error: Call to undefined function strtolower() in /home/fwhphp/public_html/sherly/school.php on line 5Code:<?php $schoolName = 'Little Flower School'; echo strtolower ($schoolName);
Last edited by sherlyk; 05-10-2014 at 06:00 AM.
Become PHP Expert in 30 days
FreeMarriage.com - Free Online Matrimonial
FlashWebHost.com - Professional Web Hosting, Designing.
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) ;
Bookmarks