PHP PROGRAMING DAY - 3 UPPER CASE
http://php.flashwebhost.com/ramesh/day-3/strtoupper.php
Code:<?php $beach = 'maarari beach'; echo strtoupper($beach) . '<br><br>'; $file_1 = 'malayalam film'; echo strtoupper($file_1);
PHP PROGRAMING DAY - 3 UPPER CASE
http://php.flashwebhost.com/ramesh/day-3/strtoupper.php
Code:<?php $beach = 'maarari beach'; echo strtoupper($beach) . '<br><br>'; $file_1 = 'malayalam film'; echo strtoupper($file_1);
Last edited by rameshxavier; 05-15-2014 at 05:30 AM.
PHP PROGRAMING DAY - 3 Upper Case Words
http://php.flashwebhost.com/ramesh/day-3/ucwords.php
Code:<?php $bike = 'I have a pulsar bike.'; $bike = ucwords($bike); echo $bike . '<br><br>'; $bike_1 = 'MY BIKE IS PULSAR 220.'; $bike_1 = ucwords($bike_1); echo $bike_1;
http://php.flashwebhost.com/annie/string.php
Code:<?php echo 'Hello Cochin <br>' ; echo 'Hello Kerala <br>'; $my_variable = 'hello india'; $my_variable = ucwords($my_variable); echo $my_variable ; echo '<br>'; echo $my_variable . ' Welcome '; ?> </body> </html>
Bookmarks