# Simba (24.02.2020 / 12:22)Это я дурак. У меня есть шаблон homepage а я редачу модуль homepage
PaRtiZzaN, х.з. на первый взгляд ошибок нет. Выводи содержимое массивов смотри где теряется.
Добавлено: 24.02.2020 / 12:52
Почему не передается в шаблон?
$forum = $db->query("SELECT * FROM `forum_topic` ORDER BY `last_post_date` DESC LIMIT 10");
$items = [];
while ($f = $forum->fetch()) {
$items[] = [
'id' => $f['id'],
'titles' => $f['name'],
'posts' => $f['post_count'],
];
}тут сделал так же
$data['news'] = $items ?? [];
$data['last_posts'] = $items ?? [];
Notice
: Undefined index: titles in
/var/www/vh4163/data/www/fonext.ru/modules/homepage/templates/index.phtml
on line
129
(
Notice
: Undefined index: posts in
/var/www/vh4163/data/www/fonext.ru/modules/homepage/templates/index.phtml
on line
129
)