Services Work Learn About Contact
0/8
Lesson 5 of 8

Arrays

PHP arrays can hold multiple values. Indexed arrays use numbers. Associative arrays use named keys. Multidimensional arrays contain other arrays.

PHP
<?php
// Indexed array
$colors = ["red", "green", "blue"];

// Associative array
$user = [
  "name" => "Ali",
  "age" => 25
];

echo $user["name"]; // "Ali"
?>
🧠

Quick Quiz

Answer correctly to unlock the next lesson.

Support the mission

This learning platform is 100% free: no ads, no tracking, no paywalls. If it helped you learn something useful, you can support future lessons or donate to Doctors Without Borders, which provides emergency medical care in crisis zones worldwide.

🎉

You completed PHP!

You finished all 8 lessons and quizzes. You now know the basics of PHP.