-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.php
More file actions
144 lines (143 loc) · 5.59 KB
/
products.php
File metadata and controls
144 lines (143 loc) · 5.59 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
$pokemonData = array(
array(
"id" => 1,
"name" => "bulbasaur",
"category" => "grass",
"description" => "bulbasaur is a Grass/Poison type Pokémon introduced in Generation 1. It is known as the Seed Pokémon.",
"img" => "https://img.pokemondb.net/artwork/large/bulbasaur.jpg"
),
array(
"id" => 2,
"name" => "oddish",
"category" => "grass",
"description" => "Oddish is a Grass/Poison type Pokémon introduced in Generation 1. It is known as the Weed Pokémon.",
"img" => "https://img.pokemondb.net/artwork/large/oddish.jpg"
),
array(
"id" => 3,
"name" => "victreebel",
"category" => "grass",
"description" => "Victreebel is a Grass/Poison type Pokémon introduced in Generation 1. It is known as the Flycatcher Pokémon.",
"img" => "https://img.pokemondb.net/artwork/large/victreebel.jpg"
),
array(
"id" => 4,
"name" => "exeggutor",
"category" => "grass",
"description" => "Exeggutor is a Grass/Psychic type Pokémon introduced in Generation 1. It is known as the Coconut Pokémon.",
"img" => "https://img.pokemondb.net/artwork/large/exeggutor.jpg"
),
array(
"id" => 5,
"name" => "meganium",
"category" => "grass",
"description" => "Meganium is a Grass type Pokémon introduced in Generation 2. It is known as the Herb Pokémon.",
"img" => "https://img.pokemondb.net/artwork/large/meganium.jpg"
),
array(
"id" => 6,
"name" => "pikachu",
"category" => "electric",
"description" => "Pikachu is an Electric type Pokémon introduced in Generation 1. It is known as the Mouse Pokémon.",
"img" => "https://img.pokemondb.net/artwork/pikachu.jpg"
),
array(
"id" => 7,
"name" => "raichu",
"category" => "electric",
"description" => "Raichu is an Electric type Pokémon introduced in Generation 1. It is known as the Mouse Pokémon.",
"img" => "https://img.pokemondb.net/artwork/raichu.jpg"
),
array(
"id" => 8,
"name" => "electrode",
"category" => "electric",
"description" => "Electrode is an Electric type Pokémon introduced in Generation 1. It is known as the Ball Pokémon.",
"img" => "https://img.pokemondb.net/artwork/electrode.jpg"
),
array(
"id" => 9,
"name" => "electabuzz",
"category" => "electric",
"description" => "Electabuzz is an Electric type Pokémon introduced in Generation 1. It is known as the Electric Pokémon.",
"img" => "https://img.pokemondb.net/artwork/electabuzz.jpg"
),
array(
"id" => 10,
"name" => "zapdos",
"category" => "electric",
"description" => "Zapdos is an Electric/Flying type Pokémon introduced in Generation 1. It is known as the Electric Pokémon.",
"img" => "https://img.pokemondb.net/artwork/zapdos.jpg"
),
array(
"id" => 11,
"name" => "charizard",
"category" => "fire",
"description" => "Charizard is a Fire/Flying type Pokémon introduced in Generation 1. It is known as the Flame Pokémon. Charizard has two Mega Evolutions, available from X & Y onwards.",
"img" => "https://img.pokemondb.net/artwork/large/charizard.jpg"
),
array(
"id" => 12,
"name" => "vulpix",
"category" => "fire",
"description" => "Vulpix is a Fire type Pokémon introduced in Generation 1. It is known as the Fox Pokémon.Vulpix has a new Alolan form introduced in Pokémon Sun/Moon.",
"img" => "https://img.pokemondb.net/artwork/vulpix.jpg"
),
array(
"id" => 13,
"name" => "rapidash",
"category" => "fire",
"description" => "Rapidash is a Fire type Pokémon introduced in Generation 1. It is known as the Fire Horse Pokémon.Rapidash has a new Galarian form in Pokémon Sword & Shield.",
"img" => "https://img.pokemondb.net/artwork/rapidash.jpg"
),
array(
"id" => 14,
"name" => "magmar",
"category" => "fire",
"description" => "Magmar is a Fire type Pokémon introduced in Generation 1. It is known as the Spitfire Pokémon.",
"img" => "https://img.pokemondb.net/artwork/magmar.jpg"
),
array(
"id" => 15,
"name" => "moltres",
"category" => "fire",
"description" => "Moltres is a Fire/Flying type Pokémon introduced in Generation 1. It is known as the Flame Pokémon.",
"img" => "https://img.pokemondb.net/artwork/moltres.jpg"
),
array(
"id" => 16,
"name" => "blastoise",
"category" => "water",
"description" => "Blastoise is a Water type Pokémon introduced in Generation 1. It is known as the Shellfish Pokémon. Blastoise has a Mega Evolution, available from X & Y onwards.",
"img" => "https://img.pokemondb.net/artwork/large/blastoise.jpg"
),
array(
"id" => 17,
"name" => "seadra",
"category" => "water",
"description" => "Seadra is a Water type Pokémon introduced in Generation 1. It is known as the Dragon Pokémon.",
"img" => "https://img.pokemondb.net/artwork/seadra.jpg"
),
array(
"id" => 18,
"name" => "dewgong",
"category" => "water",
"description" => "Dewgong is a Water/Ice type Pokémon introduced in Generation 1. It is known as the Sea Lion Pokémon.",
"img" => "https://img.pokemondb.net/artwork/dewgong.jpg"
),
array(
"id" => 19,
"name" => "poliwrath",
"category" => "water",
"description" => "Poliwrath is a Water/Fighting type Pokémon introduced in Generation 1. It is known as the Tadpole Pokémon.",
"img" => "https://img.pokemondb.net/artwork/poliwrath.jpg"
),
array(
"id" => 20,
"name" => "golduck",
"category" => "water",
"description" => "Golduck is a Water type Pokémon introduced in Generation 1. It is known as the Duck Pokémon.",
"img" => "https://img.pokemondb.net/artwork/golduck.jpg"
)
);