<?php

$students = [
[“Krunal”, “PHP”, 90],
[“Amar”, “Laravel”, 85],
[“Nirav”, “React”, 88]
];

echo “<pre>”;

print_r($students);

?>