We have an associative array that stores name and yield.
<?php
$yield = array(
"レカム"=> "16,776,900",
"JALCOホールディングス"=>"15,380,900",
"明豊エンタープライズ"=>"12,639,200",
"石垣食品"=>"5,372,100",
"ネクストウェア"=>"5,073,400"
);
foreach( $yield as $key => $value){
echo "銘柄: $key, 出来高: $value<br>";
}
?>
