관리-도구
편집 파일: fetch-event.php
<?php require_once "db.php"; $json = array(); $sqlQuery = "SELECT * FROM tbl_events ORDER BY id"; $result = mysqli_query($conn, $sqlQuery); $eventArray = array(); while ($row = mysqli_fetch_assoc($result)) { array_push($eventArray, $row); } mysqli_free_result($result); mysqli_close($conn); echo json_encode($eventArray); ?>