]> jfr.im git - uguu.git/blobdiff - static/php/grill.php
new uguu code
[uguu.git] / static / php / grill.php
diff --git a/static/php/grill.php b/static/php/grill.php
new file mode 100644 (file)
index 0000000..d36ad0b
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+// Array of image paths, feel free to add/remove to/from this list
+$images = array(
+    'img/2.png',
+    'img/3.png',
+    'img/4.png',
+    'img/5.png',
+    'img/6.png',
+    'img/7.png',
+    'img/8.png',
+    'img/9.png',
+    'img/10.png',
+    'img/11.png',
+    'img/12.png',
+    'img/13.png',
+    'img/14.png',
+    'img/15.png',
+);
+
+// Redirect to a random image from the above array using status code "303 See Other" 
+if (headers_sent() === false) {
+    header('Location: '.$images[array_rand($images)], true, 303);
+}