<?php
require_once('helpers.php');
require_once('functions.php');
require_once('data.php');
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
echo "форма отправлена!";
}
$page_content = include_template('add-index.php', [
'categories' => $categories
]);
$layout_content = include_template('layout.php', [
'main_title' => 'Добавление лота - добавь, продай, радуйся',
'content' => $page_content
]);
print($layout_content);
?>
export function dialogue2() {
document.querySelector('.link-list').onclick = function(e) {
var arr = ['test1', 'test2', 'test3'];
// Преобразовываем HTML collection в обычный массив *
var childArr = Array.prototype.slice.call(this.children);
// Получаем индекс элемента по которому произошел клик *
var index = childArr.indexOf(e.target);
var text = arr[index];
console.log(text);
dialogue.innerHTML = `${text}`;
}
}