<?php
// Define a multidimensional array
$students = array(
array(
"name" => "Tara",
"scores" => array(
"Math" => 80,
"Science" => 92,
"English" => 78
)
),
array(
"name" => "Sai",
"scores" => array(
"Math" => 90,
"Science" => 88,
"English" => 85
)
),
array(
"name" => "Jay",
"scores" => array(
"Math" => 95,
"Science" => 91,
"English" => 89
)
)
);
?>
To embed this project on your website, copy the following code and paste it into your website's HTML: