Вот PHP PHP: <?php require 'bd.php'; require '../bd.php'; if ( isset($_SESSION['logged_user']) ) : $tourn = mysqli_query($connection, "SELECT * FROM `tourn` ORDER BY `id` DESC"); ?> <?php while ( $art = mysqli_fetch_assoc($tourn)) { ?> <table border="1"> <tr> <th>Название</th> <th>Пароль</th> <th>Удаление</th> </tr> <tr> <td><?php echo $art['title'];?></td> <th><?php echo $art['password'];?></th> <td> <a href="#"> Удалить </a> </td> </tr> </table> <?php else : ?> <a href="http://clash.com/tournirs/admin/login.php">Авторизация</a><br> <a href="http://clash.com/tournirs/admin/signup.php">Регистрация</a> <?php endif ; ?> Вот ошибка: Parse error: syntax error, unexpected 'else' (T_ELSE) in D:\OpenServer\domains\clash.com\tournirs\admin\delete_tourn.php on line 39 --- Добавлено --- Разобрался