summaryrefslogtreecommitdiffstats
path: root/bot/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'bot/index.php')
-rw-r--r--bot/index.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/bot/index.php b/bot/index.php
deleted file mode 100644
index 005efb0..0000000
--- a/bot/index.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html lang=en>
- <head>
- <meta charset=UTF-8 />
- <meta name=viewport content="width=device-width,initial-scale=1.0" />
- <title>
- ImgLinkBot
- </title>
- <style>
- body {
- background-color: black;
- margin: 0;
- padding: 0
- }
- img {
- width: 100%
- }
- </style>
- </head>
- <body>
- <?php
- foreach(explode(",", $_REQUEST["i"]) as $a) {
- echo '<img src="https://i.redd.it/'.htmlspecialchars($a).'" />';
- }
- ?>
- </body>
-</html>