-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.php
More file actions
35 lines (35 loc) · 873 Bytes
/
data.php
File metadata and controls
35 lines (35 loc) · 873 Bytes
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
<?php
$data = [
'olexandro' => md5('olexandro'),
'alexander' => md5('god228')
];
$goods = [
'1' => [
'Product name' => 'Floral Dress 1',
'Price' => '300',
'URL' => 'images/item-5.jpg'
],
'2' => [
'Product name' => 'Floral Dress 2',
'Price' => '150',
'URL' => 'images/item-6.jpg'
],
'3' => [
'Product name' => 'Floral Dress 3',
'Price' => '500',
'URL' => 'images/item-7.jpg'
],
'4' => [
'Product name' => 'Floral Dress 4',
'Price' => '700',
'URL' => 'images/item-8.jpg'
]
];
$check = ['Загружено', 'Ошибка'];
$categories=[
'1' => 'Футболка',
'2' => 'Джинсы',
'3' => 'Кроссовки',
'4' => 'Пиджак',
'5' => 'Рубашка'
];