039 - using Foreach for Associative Array
bill = 25
steve = 28
elon = 22
key value
bill25
steve28
elon22
<?php // 039 - Foreach for Associative Array echo "</br><span class='myheading'>039 - using Foreach for Associative Array </span></br>"; $age_039 = [ "bill" => 25, "steve" => 28, "elon" => 22, ]; foreach($age_039 as $key_039 => $value_039){ // $key_039 & $value_039 is user defined echo "$key_039 = $value_039 <br>"; } echo "<ul>"; /* ------with ul ------- */ foreach($age_039 as $key_039 => $value_039){ echo "<li>$key_039 = $value_039 </li>"; } echo "</ul>"; echo "<table border='1px solid black'>"; /* ------with table ------- */ echo "<tr>"; echo "<th>key </th>"; echo "<th>value</th>"; echo "</tr>"; foreach($age_039 as $key_039 => $value_039){ echo "<tr>"; echo "<td>$key_039</td>"; echo "<td>$value_039 </td>"; echo "</tr>"; } echo "</table>"; ?>