core/api/modules/tz/index.php

17 lines
658 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
/*
20.11.2017 добавлен поиск по алиасу (ЧПУ) /alias.html
22.03.2021: Почти все засунуто в ООП
-- Доделать лайки и дизлайки
-- Сделать коментарии
*/
//$mod = new main($smarty, $settings);
//$mod->db=$db;
if ($_SESSION['dostup']!=='a' && $_SESSION['dostup']!=='e')header( 'Location: /403/' );
unset($a);
$a['user_id']=$_SESSION['user_id'];
$db->free_sql2("CREATE TABLE IF NOT EXISTS zametka (user_id INTEGER NOT NULL, txt text, FOREIGN KEY (user_id) REFERENCES users (id))");
$txt=$db->get_val('zametka', $a, 'txt');
$smarty -> assign( 'txt', $txt );
?>