Results 1 to 10 of 50

Thread: Day 2 - Variables - Become PHP Expert in 30 days

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jan 2008
    Location
    india,kerala-god's own country
    Posts
    14,007

    Default

    DAY 2 PROGRAMMING - My Post

    http://php.flashwebhost.com/ramesh/study2.php


    Code:
    <?php
    
    $film = 'Gangster';
    
    echo  'Film: ' . $film; echo '. <br>';
    
    $actor = 'Mammootty';
    
    echo  'Actor: ' . $actor; echo '. <br>';
    
    $actress = 'Nyla Usha';
    
    echo  'Actress: ' . $actress; echo '. <br>';
    
    $director = 'Aashiq Abu';
    
    echo  'Director: ' . $director; echo '.';

  2. #2
    Join Date
    Oct 2003
    Location
    Kochi, Kerala, India
    Posts
    21,389

    Default

    DAY 2 PROGRAMMING

    http://php.flashwebhost.com/vineesh/...ariables_3.php

    My Code is as follows:
    Code:
    <?php
    
    $actorName1 = '<b>Mohanlal</b>';
    $actorName2 = '<b>Mammootty</b>';
    $actorName3 = '<b>Suresh Gopi</b>';
    
    $award = '<b>National Film Awards</b>';
    
    $Times1 = 3;
    $Times2 = 1;
    
    echo 'Actor ' . $actorName1 . ' and '  . $actorName2 . ' received ' . $award . ' ' . $Times1 . ' times'; echo '.';
    
    echo '<br> <br>';
    
    echo 'But ' . $actorName3 . ' received it only ' . $Times2 . ' time'; echo '.';

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •