-
Notifications
You must be signed in to change notification settings - Fork 0
/
reportShow.php
39 lines (35 loc) · 1.37 KB
/
reportShow.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
try {
//下面這個if則是我設定好讓它在開發時,會自動判斷我們是在開發環境還是在網站上線
if ($_SERVER['HTTP_HOST'] == 'localhost' || $_SERVER['HTTP_HOST'] == '127.0.0.1') {
// 開發環境
//這是本地端的mySQL資料庫帳號密碼檔案
require_once("connectPxzoo.php");
//允許跨域存取
header("Access-Control-Allow-Origin: *"); // 允許所有來源
header("Content-Type: application/json; charset=UTF-8");
} else {
// 生產環境
//這裡則是我們網站上線後要偵測緯育資料庫的帳號密碼檔案
require_once("connect_chd104g4.php");
}
// SQL 查詢
$sql = "SELECT r.*, m.mem_name, c.com_text, c.com_pic
FROM report r JOIN member m ON r.mem_id = m.mem_id
JOIN comment c ON r.com_id = c.com_id
ORDER BY r.report_date DESC";
// 準備 SQL 查詢
$report = $pdo->prepare($sql);
// 執行 SQL 查詢
$report->execute();
// 檢查是否有資料
if ($report->rowCount() > 0) {
$reportData = $report->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($reportData);
} else {
echo json_encode(["errMsg" => "沒有找到資料"]);
}
} catch (PDOException $e) {
echo json_encode(["errMsg" => "執行失敗: " . $e->getMessage()]);
}
?>