Kod:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>realitycheats.com</title>
</head>
<body>
<?php
$isimler=["ad"=>"Ahmet", "soyad"=>"CANSEVER", "yas"=>19 ,3=>"merhaba"];
foreach($isimler as $index => $isim)
{
echo "Index :$index : $isim";
echo "<br>";
}
?>
</body>
</html>