Results 1 to 10 of 42

Thread: Day 5 - Array - Become PHP Expert in 30 days

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #30
    Join Date
    Oct 2003
    Location
    Kochi, Kerala, India
    Posts
    21,389

    Default

    http://php.flashwebhost.com/vineesh/day5/array_1.php

    PHP Code:
    <?php

    $class 
    = array('lkg''ukg''i a''ii b''iii c''iv d''v a''vi c''vii d');

    echo 
    strtoupper($class [0]);
    echo 
    '<br>';
    echo 
    strtoupper($class [2]);
    echo 
    '<br>';
    echo 
    strtoupper($class [4]);
    echo 
    '<br>';
    echo 
    strtoupper($class [6]);
    echo 
    '<br>';
    echo 
    strtoupper($class [7]);
    http://php.flashwebhost.com/vineesh/...ay_numeric.php

    PHP Code:
    <?php

    $numbers 
    = array(9876543210);

    echo 
    $numbers [0];
    echo 
    '<br>';
    echo 
    $numbers [1];
    echo 
    '<br>';
    echo 
    $numbers [2];
    echo 
    '<br>';
    echo 
    $numbers [3];
    echo 
    '<br>';
    echo 
    $numbers [4];
    echo 
    '<br>';
    echo 
    $numbers [5];
    echo 
    '<br>';
    echo 
    $numbers [6];
    echo 
    '<br>';
    echo 
    $numbers [7];
    echo 
    '<br>';
    echo 
    $numbers [8];
    echo 
    '<br>';
    echo 
    $numbers [9];
    Last edited by vineesh; 05-15-2014 at 09:17 AM.

Tags for this Thread

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
  •