Results 1 to 10 of 42

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

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Nov 2009
    Location
    kerala
    Posts
    19,076

    Default Foreach Examples

    http://php.flashwebhost.com/sibichan...ch-example.php

    PHP Code:
    <?php
    $vechicles
    = array ('Bus' 'Car' 'Van' 'Auto');
    foreach (
    $vechicles as $vechicle) {
    echo 
    $vechicle;
    echo 
    '<br>';
    }
    Another Example for foreach

    http://php.flashwebhost.com/sibichan.../ssnetwork.php

    PHP Code:


    <?php
    $networkingSites 
    = array('Facebook' 'Twitter' 'Pinterest' 'Delicious' );
    foreach (
    $networkingSites as $networkingSite) {
    echo 
    $networkingSite;
    echo 
    '<br>';
    }
    Last edited by Vahaa11; 05-14-2014 at 07:25 AM.

  2. #2
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    http://php.flashwebhost.com/sherly/subjects.php

    Code:
    <?php
    
    $subjects = array('Malayalam', 'Hindi', 'Maths', 'scinece');
    
    echo 'My Favourite Subjects are ' . $subjects[1] . 'and ' . $subjects[4];
    
    echo '<pre>';
    print_r($subjects);
    echo '</pre>';

  3. #3
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    http://php.flashwebhost.com/sherly/students.php

    Code:
    <?php
    
    $mystudents = array('Neena' , 'Meera' , 'Leena' , 'Zeena' );
    foreach ($mystudents as $mystudents) {
    echo $mystudents;
    echo '<br>';
    }

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
  •