View Single Post
Old 04-15-2014, 03:28 AM   #8
tomsmith
Registered User
 
Join Date: Apr 2014
Posts: 1
<?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);
?>
check this code and reply with output http://tutorialterminal.blogspot.in/

Last edited by tomsmith; 04-15-2014 at 03:28 AM.. Reason: site is missing
tomsmith is offline   Reply With Quote