From 6c4e401d5a2cf05ef1b880f9032af553fb26f6b1 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 29 Oct 2023 14:49:18 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B3=E3=83=BC=E3=83=87=E3=82=A3=E3=83=B3?= =?UTF-8?q?=E3=82=B0=E3=83=BB=E3=82=B9=E3=82=BF=E3=82=A4=E3=83=AB=E3=81=AE?= =?UTF-8?q?=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.php | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/index.php b/index.php index df08d87..45763d2 100644 --- a/index.php +++ b/index.php @@ -2,27 +2,25 @@ require_once "${_SERVER['DOCUMENT_ROOT']}/database.php"; -if (isset ($_GET['page'])): - $page = $_GET['page']; -else: - $page = 0; -endif; - -if (isset ($_GET['thread'])): - $thread = $_GET['thread']; -else: - $thread = -1; -endif; - -if (isset ($_GET['sort'])): +if (isset ($_GET['page'])) + $page = $_GET['page']; +else + $page = 0; + +if (isset ($_GET['thread'])) + $thread = $_GET['thread']; +else + $thread = -1; + +if (isset ($_GET['sort'])) + { $sort = $_GET['sort']; - if (!(in_array ($sort, array ('td', 'eg', 'ta', 'eb')))): - $sort = 'td'; - endif; -else: - $sort = 'td'; -endif; + if (!(in_array ($sort, array ('td', 'eg', 'ta', 'eb')))) + $sort = 'td'; + } +else + $sort = 'td'; // 画像のディレクトリを開く. $dir = '/images/'; @@ -33,18 +31,20 @@ $mysqli = set_mysql ('miteruzo_bbs'); $mysqli -> set_charset ('utf8'); -if ($result = $mysqli -> query ("SELECT * FROM threads WHERE id = $thread")): +if ($result = $mysqli -> query ("SELECT * FROM threads WHERE id = $thread")) + { $row = $result -> fetch_assoc (); $title = $row['title']; $explain = $row['explain']; $result -> close (); -endif; + } if (isset ($_GET['id']) && isset ($_GET['evaluate']) - && (($_GET['evaluate'] == 'good') || ($_GET['evaluate'] == 'bad'))): + && (($_GET['evaluate'] == 'good') || ($_GET['evaluate'] == 'bad'))) + { $mysqli -> query (" UPDATE responses @@ -54,7 +54,7 @@ if (isset ($_GET['id']) (thread_id = $thread) AND (response_id = {$_GET['id']})"); header ("Location: ./?thread=$thread&sort=$sort"); -endif; + } require_once './forms/index.frm.php';