<?php

$students = [
[
“name” => “Krunal”,
“course” => “PHP”,
“marks” => 90
],
[
“name” => “Amar”,
“course” => “Laravel”,
“marks” => 85
]
];

echo “<pre>”;

print_r($students);

?>