diff options
author | Cflip <36554078+cflip@users.noreply.github.com> | 2021-02-10 20:40:32 -0700 |
---|---|---|
committer | Cflip <36554078+cflip@users.noreply.github.com> | 2021-02-10 20:40:32 -0700 |
commit | f83530a122119d7f69812493f9c2f4987ccb2065 (patch) | |
tree | 691ed8597a8d3275998f7db951b7b055ef5baf3b /all.php | |
parent | 4c9d433ba1c52ad67e4cccabf04e709bb8b85070 (diff) |
Reorganize code and add info to front page
Diffstat (limited to 'all.php')
-rw-r--r-- | all.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ include_once 'header.php'; include_once 'includes/db_inc.php'; -include_once 'includes/functions_inc.php'; +include_once 'includes/functions_display.php'; $sql = "SELECT thread_id, thread_subject, thread_date, user_id, user_name, cat_id, cat_name FROM threads JOIN users ON thread_author = user_id JOIN categories ON thread_cat = cat_id ORDER BY thread_id DESC"; $result = mysqli_query($dbc, $sql); |