PHP: <?php include 'conf.php'; $kek = mysql_query("SELECT * FROM `users`;") or die(mysql_error()); $login = mysql_fetch_assoc($kek); ?> <!DOCTYPE html><html><head><?php include "/inc/header.php" ?> <title>Лог</title> </head><body> <?php include "/inc/menu.php"; ?> <h1>Лог</h1> <?php ?> <table class="table table-striped"> <tr> <th>Отправитель</th> <th>Получатель</th> <th>Количество</th> <th>Время</th> </tr> <?php $sql = "SELECT * FROM `transactions` WHERE user_from = $login;" or die(mysql_error()); if($sql && mysql_num_rows($sql) > 0) { while($row = mysql_fetch_row($sql)) { echo '<tr><td>'.$row['user_from'].'</td>'; echo '<td>'.$row['user_to'].'</td>'; echo '<td>'.$row['count'].'</td>'; echo '<td>'.$row['time'].'</td> </tr>'; } } ?> </table></body></html> не понимаю как чинить помогите пожалуйста
debug http://phpfaq.ru/debug https://netbeans.org/kb/docs/php/debugging_ru.html https://php.ru/forum/threads/howto-...i-po-shagam-i-s-kartinkami.58974/#post-474550 Взамен 23 строки надо бы добавить выполнение SQL запроса в СУБД. Смотри mysql_query. Вот так можно выполнить запрос: PHP: $sql = mysql_query("SELECT * FROM `transactions` WHERE `user_from` = '".mysql_escape_string($login)."';") Надеюсь ты это делаешь не для публичного доступа, а то поломают тебе.