-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (27 loc) · 1.7 KB
/
index.php
File metadata and controls
33 lines (27 loc) · 1.7 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
<?php
require_once "helpers.php";
require_once "core/init.php";
/**
* @var PDO $con
*/
$page_name = "Yeti";
$goodsObject = $con -> query('SELECT * from lots l JOIN categories c ON l.id_category = c.id');
$goods = $goodsObject -> fetchAll();
// $goods = [
// [
// "name" => "2014 Rossignol District Snowboard",
// "categories" =>"Доски и лыжи",
// "price" => 10999 ,
// "img_url" => "img/lot-1.jpg",
// "until" => "2022-02-17 15:00"
// ],
// ["name" => "DC Ply Mens 2016/2017 Snowboard", "categories" =>"Доски и лыжи","price" => 159999,"img_url" => "img/lot-2.jpg", "until" => "2022-10-7 12:55"],
// ["name" => "Крепления Union Contact Pro 2015 года размер L/XL", "categories" =>"Крепления","price" => 8000,"img_url" => "img/lot-3.jpg","until" => "2022-11-12 15:00"],
// ["name" => "Ботинки для сноуборда DC Mutiny Charocal", "categories" =>"Ботинки","price" => 10999,"img_url" => "img/lot-4.jpg", "until" => "2022-10-12 15:00"],
// ["name" => "Куртка для сноуборда DC Mutiny Charocal", "categories" =>"Одежда","price" => 7500,"img_url" => "img/lot-5.jpg", "until" => "2022-12-13 15:00"],
// ["name" =>"Маска Oakley Canopy", "categories" =>"Разное","price" => 5400,"img_url" => "img/lot-6.jpg", "until" => "2022-10-30 15:00"]
// ];
$main = include_template("main-template.php",["user_name" => $user_name,
"page_name" => $page_name, "goods" => $goods,"categories" => $categories]);
$page = include_template("layout.php", ["content" => $main,"is_auth" => $is_auth, "categories" => $categories,"user_name"=> $user_name,'page_name'=>$page_name]);
echo $page;