-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.php
More file actions
116 lines (115 loc) · 2.95 KB
/
books.php
File metadata and controls
116 lines (115 loc) · 2.95 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
<?php
$books = [
'Silver Serpent' => [
'id' => '12345',
'author' => 'Frank Novelist',
'color' => 'Silver',
'genre' => 'Fantasy',
'released' => '1922',
'height' => '248px',
],
'Crimson Moonrise' => [
'id' => '54321',
'author' => 'Grace Writer',
'color' => 'Red',
'genre' => 'Mystery',
'released' => '1955',
'height' => '220px',
],
'Emerald Echoes' => [
'id' => '67890',
'author' => 'Henry Wordsmith',
'color' => 'Green',
'genre' => 'Romance',
'released' => '1912',
'height' => '240px',
],
'Golden Key' => [
'id' => '89797',
'author' => 'Isabel Storyteller',
'color' => 'Yellow',
'genre' => 'Adventure',
'released' => '1992',
'height' => '248px',
],
'Sapphire Shadows' => [
'id' => '23556',
'author' => 'Jack Author',
'color' => 'Blue',
'genre' => 'Thriller',
'released' => '1998',
'height' => '248px',
],
'Scarlet Secrets' => [
'id' => '56341',
'author' => 'Karine Novelist',
'color' => 'Red',
'genre' => 'Mystery',
'released' => '2008',
'height' => '242px',
],
'Bronze Blade' => [
'id' => '32545',
'author' => 'Liam Writer',
'color' => 'teal',
'genre' => 'Historical Fiction',
'released' => '2010',
'height' => '225px',
],
'Violet Vendetta' => [
'id' => '93275',
'author' => 'Mia Wordsmith',
'color' => 'Purple',
'genre' => 'Crime',
'released' => '1988',
'height' => '220px',
],
'Enchanted Forest' => [
'id' => '23564',
'author' => 'Nathan Storyteller',
'color' => 'Green',
'genre' => 'Fantasy',
'released' => '1988',
'height' => '241px',
],
'Ruby Redem' => [
'id' => '12456',
'author' => 'Olivia Author',
'color' => 'Red',
'genre' => 'Romance',
'released' => '1942',
'height' => '237px',
],
'Midnight Murders' => [
'id' => '32675',
'author' => 'Patrick Novelist',
'color' => 'navy',
'genre' => 'Mystery',
'released' => '2002',
'height' => '244px',
],
'Aqua Odyssey' => [
'id' => '65488',
'author' => 'Quincy Writer',
'color' => 'Aqua',
'genre' => 'Adventure',
'released' => '2014',
'height' => '244px',
],
'Copper Chronicles' => [
'id' => '23298',
'author' => 'Rachel Wordsmith',
'color' => 'violet',
'genre' => 'Fantasy',
'released' => '2020',
'height' => '223px',
],
'Topaz Treasures' => [
'id' => '53489',
'author' => 'Samuel Storyteller',
'color' => 'Orange',
'genre' => 'Adventure',
'released' => '2019',
'height' => '210px',
]
];