my-portfolio/src/api/timelineData.php

45 lines
944 B
PHP
Raw Normal View History

2021-08-22 10:44:49 +01:00
<?php
2021-08-23 21:38:37 +01:00
require_once "./config.php";
2021-08-22 10:44:49 +01:00
class TimelineData
{
function getEduData()
{
$conn = dbConn();
$stmt = $conn->prepare("SELECT * FROM edu;");
$stmt->execute();
2021-08-22 10:44:49 +01:00
// set the resulting array to associative
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
if ($result)
{
return $result;
}
else
{
return array("errorMessage" => "Error, edu data not found");
}
}
function getWorkData()
{
$conn = dbConn();
$stmt = $conn->prepare("SELECT * FROM work;");
$stmt->execute();
// set the resulting array to associative
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
if ($result)
{
return $result;
}
else
{
return array("errorMessage" => "Error, work data not found");
}
}
2021-08-22 10:44:49 +01:00
}