$assocArray = array("name" => "John", "age" => 25, "city" => "New York");

foreach ($assocArray as $key => $value) {
    echo "$key: $value <br>";
}