|
![]() |
#1 |
Registered User
Join Date: Nov 2013
Location: Surat
Posts: 971
|
<?php
// create an associative array that is a cart holding items and prices $cart_array = array( "cereal" => "5.00", "coffee beans" => "2.50", "bananas" => "3.50", "onion" => "1.00", "lettuce" => "2.40", "tomato" => "1.00", ); // and here is how you can output any key's value you choose echo "Bananas cost $" . $cart_array["bananas"] . " at this store."; echo "<br /><br />"; // And here is how you can print the whole array for viewing and debugging print_r($cart_array); ?>
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. , |
![]() |
![]() |
![]() |
#2 |
Registered User
Join Date: Dec 2013
Posts: 21
|
Associative arrays use named keys that you assign to them. For example:
<?php $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); echo "Peter is " . $age['Peter'] . " years old."; ?> You can also use a loop through associated array. To get any assistance related to IT support you can contact with Network Fish London. They will provide you excellent Tech Support. |
![]() |
![]() |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Importance of Php Development for Web Development | tech.biztech | Programming General | 35 | 11-22-2019 12:37 AM |
PHP introduction | stevepatton | PHP / mySQL | 48 | 06-17-2019 02:02 AM |
PHP project training in ahmedabad, live project training in php ahmedabad | anantitsolution | Post your ad here | 1 | 07-16-2013 07:42 PM |
The best source of learn PHP easily at home. | chikkiarora | Programming General | 11 | 02-10-2013 02:18 AM |
Are you aware of the fact that PHP programming is the most widely used one? | johnrichards774 | PHP / mySQL | 3 | 02-07-2012 05:41 AM |