Associative Array in PHP

 <?php


// Associative array

$favCol = array("shubham"=>"red","ram"=>"green","vatsal"=>"blue");
foreach($favCol as $key=>$value) {
    echo "The favorite color of $key is $value <br>";
}






?>

Comments

Popular Posts