51

PHOTO EMBED

Tue Mar 05 2024 13:08:07 GMT+0000 (Coordinated Universal Time)

Saved by @codewarrior

// Creating a multidimensional associative array
$employees = array(
    array("name" => "John", "age" => 30, "position" => "Developer"),
    array("name" => "Alice", "age" => 25, "position" => "Designer"),
    array("name" => "Bob", "age" => 35, "position" => "Manager")
);

// Accessing elements in a multidimensional associative array
echo $employees[0]["name"];      // Outputs "John"
echo $employees[1]["position"];  // Outputs "Designer"
echo $employees[2]["age"];       // Outputs 35
content_copyCOPY