-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharrays.php
38 lines (31 loc) · 869 Bytes
/
arrays.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<title>Arrays</title>
</head>
<body>
<?php
$brands = array("Toyota","Volkswagen","Subaru","Audi","Range Rover","Lexus","Chevrolet");
print_r($brands);
$brand[0] = "Toyota";
$brand[1] = "Volkswagen";
$brand[2] = "Subaru";
$brand[3] = "Audi";
$brand[4] = "Range Rover";
$brand[5] = "Lexus";
$brand[6] = "Chevrolet";
print_r($brand);
$grades = array("Mike"=>80, "Vincent"=>78, "Victor"=>75);
print_r($grades);
$contacts = array(
array("name"=>"Mike Chepkwonyi",
"email"=>"[email protected]"),
array("name"=>"Vincent Sigei",
"email"=>"[email protected]"),
array("name"=>"Victor Sirma",
"email"=>"[email protected]")
);
echo "Mike Chepkwonyi's Email Id is: ". $contacts[0]["email"];
?>
</body>
</html>