Array ဆိုတာ value များစွာကို variable တစ်ခုတည်းထဲမှာ စုထားတဲ့ structure ပါ။ Menu list, product list, user profile, cart items စတာတွေမှာ array တွေကိုအရမ်းအသုံးများပါတယ်။ Indexed array က number index သုံးပြီး Associative array က name key သုံးပါတယ်။
php
<?php
// Indexed array
$skills = ["HTML", "CSS", "PHP"];
echo $skills[2] . "<br>";
// Associative array
$user = [
"name" => "Mya Mya",
"role" => "Student"
];
echo $user["name"] . " is a " . $user["role"];
?>You should see
PHP Mya Mya is a Student