Оценить:
 Рейтинг: 0

PHP. Разработка модуля комментариев для сайта

Год написания книги
2021
Теги
<< 1 ... 52 53 54 55 56 57 58 59 60 ... 78 >>
На страницу:
56 из 78
Настройки чтения
Размер шрифта
Высота строк
Поля

<?php $t = $saylist['saydate'];

echo '<span style="float:right;">' . date("d.m.Y", "$t") . '</span>'; ?>

</div>

<!– Выводим аватар и комментарии –>

<div class="printcomment" id="">

<p></p><img src="<?= '/chat/admin/users/' . $saylist['img'] ?>" class="sayavatar">

<?php

$comment = $saylist['saytext'];

comment_to_smile($comment); //печатаем комментарии

$post_id = $saylist['id'];

/* Активация кнопок */

if (userHasRole('admin')) {

$buttonactive = 'submit'; //если админ делаем активными все кнопки

} elseif ($saylist['userid'] == $userid) {

$buttonactive = 'submit'; //делаем активными кнопки для юзера

} else {

$buttonactive = 'hidden'; //отключаем кнопки

} ?></p>

</div><!– END printcomment –>

<!– Выводим блок кнопок –>

<div class="block_button_say" id="">

<div class="wrappersaybutton">

<div class="reply_button" id="">

<div class="postnumber" id=""><?php echo '#' . $saylist['id']; ?> </div>

<a href="?reply=<?php htmlout($post_id); ?>" class="areply">Ответить</a>

</div>

<div class="sayright">

<div class="button_say_edit">

<form name="" method="post" action="/chat/say/sayedit.php" class="logout">

<input type="hidden" name="pageid" id="" value=" <?php echo $pageid; ?>" />

<input type="hidden" name="textedit" value="<?php echo $saylist['id']; ?>">

<input type="hidden" name="saytext" id="" value="<?php echo $saylist['saytext']; ?>" />

<input type="<?= $buttonactive ?>" name="actionedit" value="Редактировать" />

</form>

</div>

<div class="button_say_delete">

<form name="sayform" method="post" action="/chat/say/reset.php" class="logout">

<input type="hidden" name="pageid" id="" value=" <?php echo $pageid; ?>" />

<input type="hidden" name="deleteid" id="" value=" <?php echo $saylist['id']; ?>" />

<input type="<?= $buttonactive ?>" name="delete" id="" value="Удалить" />

</form>

</div>

</div>

</div>

<!– Форма ответить на комментарий –>

<div class="add_reply" id="">

<?php

if (isset($_SESSION['login'])) {

if (isset($_GET['reply']) and $_GET['reply'] == $post_id) {

include_once $_SERVER['DOCUMENT_ROOT'] . '/chat/say/form_add_reply.html.php';
<< 1 ... 52 53 54 55 56 57 58 59 60 ... 78 >>
На страницу:
56 из 78