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. #12
    Join Date
    Nov 2009
    Location
    kerala
    Posts
    19,076

    Default Array add example

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

    PHP Code:

    <?php $hostingPackage = array (' Small '' Medium ' ' Large ') ;
    echo 
    '<pre>';

    print_r($hostingPackage);

    echo 
    '</pre>';

    $hostingPackage [] = 'Premium';$hostingPackage [] = 'Starandard';

    echo 
    '<pre>';

    print_r($hostingPackage);echo '</pre>';
    Another example

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


    PHP Code:
    <?php 
    $companyNames 
    = array('BizHat''FlashWebHost''HostOnNet');
    echo 
    '<pre>';

    print_r($companyNames);

    echo 
    '</pre>';
    echo 
    'Iam going to add 2 more Company Names';
    echo 
    '<br>';
    $companyNames[] = 'Buyscripts';
    $companyNames[]= 'FreeMarriage';
    echo 
    '<pre>';

    print_r($companyNames);

    echo 
    '</pre>';
    Last edited by Vahaa11; 05-14-2014 at 08:59 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
  •