Results 1 to 10 of 27

Thread: Day 6 - Associative Array - Become PHP Expert in 30 days

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #10
    Join Date
    Apr 2005
    Posts
    46,704

    Default

    http://php.flashwebhost.com/mini/array_1.php

    Code:
      <?php
    
    $mobile = array();
    
    $mobile['Name'] = 'Reliance Mobile Phone';
    $mobile['Price'] = 5000;
    $mobile['Color'] = 'yellow';
    $mobile ['Sim'] = 'duel';
    $mobile ['Camera'] = '8mp';
    
    
    echo '<pre>';
    print_r($mobile);
    echo '</pre>';
    
    
    echo '<h1>Product Details</h1>';
    echo ' <b>Name:</b> ' . $mobile['Name'] . '<br>';
    echo ' <b>Price:</b>Rs: ' . $mobile['Price'] . '/-<br>';
    echo ' <b>Color:</b> ' . $mobile['Color'] . '<br>';
    echo ' <b>Sim:</b> ' . $mobile ['Sim'] . '<br>';
    echo ' <b>Camera:</b> ' . $mobile ['Camera'] . '<br>';
    Last edited by minisoji; 05-15-2014 at 09:26 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
  •