25 lines
517 B
PHP
25 lines
517 B
PHP
<?php
|
|
require_once "./config.php";
|
|
|
|
class TimelineData
|
|
{
|
|
function getTimelineData()
|
|
{
|
|
$conn = dbConn();
|
|
$stmt = $conn->prepare("SELECT * FROM timeline;");
|
|
$stmt->execute();
|
|
|
|
// set the resulting array to associative
|
|
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
if ($result)
|
|
{
|
|
return $result;
|
|
}
|
|
else
|
|
{
|
|
return array("errorMessage" => "Error timeline data not found");
|
|
}
|
|
|
|
}
|
|
} |