14 lines
380 B
PHP
14 lines
380 B
PHP
<?php
|
|
include 'include/db.php';
|
|
include 'include/templates.php';
|
|
|
|
if (isset($_COOKIE["meowboardSession"])) {
|
|
if (checkSessionToken($_COOKIE["meowboardSession"]) == 0) {
|
|
setcookie("meowboardSession", "", 1);
|
|
}
|
|
}
|
|
|
|
showHeader();
|
|
dispImage("https://media.discordapp.net/attachments/823599010166210610/963104145164886077/image0-4.gif", array("meow","witch"));
|
|
echo $footer;
|
|
?>
|