<?php
$student = [
“name” => “Krunal”,
“course” => “PHP”,
“city” => “Ahmedabad”
];
foreach ($student as $key => $value) {
echo $key . ” : ” . $value . “<br>”;
}
?>
<?php
$student = [
“name” => “Krunal”,
“course” => “PHP”,
“city” => “Ahmedabad”
];
foreach ($student as $key => $value) {
echo $key . ” : ” . $value . “<br>”;
}
?>
No images uploaded for this post.
No videos uploaded for this post.