Page 1 of 1

Foreach help

Posted: Sat May 25, 2013 2:22 pm
by FrederickGeek8
I have an array that is like
Array([GOOG] => 1, [AAPL] => 2);

How can I do a foreach where I can grab the value like GOOG (the list is ordered by the number value)

Thanks,
Fred

Re: Foreach help

Posted: Sat May 25, 2013 5:12 pm
by ExtremeGaming
It's actually a lot simpler than one would think :) Here's an example.
<?php
$array = array("Test" => "successful"); // Just a sample array

foreach($array as $key => $value) {

echo $key." returned ".$value;  // Displays "Test returned successful"

}
?>