adlerka.top/lib/newsarticle.php

37 lines
1.2 KiB
PHP
Raw Normal View History

2024-02-22 09:42:37 +01:00
<?php
function getNewsArticles() :array
{
global $mysqli;
$articles = [];
if (isLoggedIn()) {
2024-02-22 10:05:09 +01:00
$result = $mysqli->query("SELECT NewsArticles.ID, NewsArticles.WrittenAt, NewsArticles.WrittenBy, NewsArticles.Title, NewsArticles.Body, NewsArticles.FileList, Users.Nickname FROM NewsArticles INNER JOIN Users ON NewsArticles.WrittenBy = Users.ID; ");
2024-02-22 09:42:37 +01:00
// Check if the query executed Successfully
if ($result) {
while ($row = $result->fetch_assoc()) {
$articles[] = $row;
}
}
}
return $articles;
2024-02-22 10:05:09 +01:00
}
function addNewsArticle($title="Nazov", $body="Obsah") :array
{
global $mysqli;
$output = ["Status" => "Fail"]; // Default Status is "Fail"
if (isLoggedIn()) {
2024-02-22 12:25:03 +01:00
$query = $mysqli->prepare("INSERT INTO NewsArticles (WrittenBy, Title, Body, FileList) VALUES (?, ?, ?, 0);");
$query->bind_param("issi", $_SESSION["id"], htmlspecialchars($title), htmlspecialchars($body));
2024-02-22 10:05:09 +01:00
$query->execute();
if ($query->affected_rows > 0) {
$output["Status"] = "Success";
}
}
$query->close();
return $output;
2024-02-22 09:42:37 +01:00
}