weh.moe/weh.php

40 lines
1 KiB
PHP

<?php
$quotes = file_get_contents('weh.json');
if ($quotes !== false) {
$quotes = json_decode($quotes, true);
if (isset($_GET['idx']) && ctype_digit($_GET['idx']) && $_GET['idx'] < count($quotes)) {
$index = $_GET['idx'];
} else {
$index = array_rand($quotes);
}
$quote = $quotes[$index];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weh?</title>
<link rel="stylesheet" href="weh.css">
<link rel="icon" type="image/x-icon" href="weh.ico">
</head>
<body>
<div class="container">
<h1>Weh?</h1>
<div class="weh"></div>
<?php if ($quotes) { ?>
<?php if ($quote["line"] == "*Rage squeals*") { ?>
*Rage squeals*
<?php } else { ?>
<?=$quote["line"]?><br>
<em><small>~ King (The Owl House, <?=$quote["attribution"]?>)</small></em>
<?php } ?>
<?php } ?>
</div>
</body>
</html>