Test meme rendering
This commit is contained in:
parent
8f392da809
commit
9f1cfc2ed4
@ -5,7 +5,7 @@ function addMeme(string $memeText, int $imageID): bool
|
||||
global $mysqli;
|
||||
|
||||
if (isLoggedIn() && fileExists($imageID)) {
|
||||
$stmtMemeAdd = $mysqli->prepare('INSERT INTO Memes (AuthorID, Title, TextContent, FileID) VALUES (?, ?, ?)');
|
||||
$stmtMemeAdd = $mysqli->prepare('INSERT INTO Memes (AuthorID, Title, TextContent, FileID) VALUES (?, ?, ?, ?)');
|
||||
$stmtMemeAdd->bind_param('issi', $_SESSION['ID'], htmlspecialchars($memeText), $imageID);
|
||||
$stmtMemeAdd->execute();
|
||||
return true;
|
||||
@ -44,7 +44,7 @@ function renderMemeGallery(): string
|
||||
// Bind the result variables
|
||||
$stmtlist->bind_result($memeID, $title, $textContent, $createdAt, $filePath, $fileType, $userNickname);
|
||||
|
||||
$meme_gallery_template = file_get_contents($routerConfig->template_dir . "meme_gallery.html");
|
||||
$meme_gallery_template = file_get_contents($routerConfig['template_dir'] . 'meme_gallery.html');
|
||||
|
||||
// Fetch the results
|
||||
$memes_out = '';
|
||||
|
Loading…
Reference in New Issue
Block a user