summary refs log tree commit diff stats
path: root/pages/random.php
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2011-10-15 10:02:30 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2011-10-15 10:02:30 -0400
commita4cca42fa3afbe325ab403dae31aedb1c3cf4075 (patch)
tree08156c3583364c5141e137363da361288ad45884 /pages/random.php
parent2101d286d836a54cde9a4cd428e0ebbf9ce7929a (diff)
downloadpillowcase-a4cca42fa3afbe325ab403dae31aedb1c3cf4075.tar.gz
pillowcase-a4cca42fa3afbe325ab403dae31aedb1c3cf4075.tar.bz2
pillowcase-a4cca42fa3afbe325ab403dae31aedb1c3cf4075.zip
Added random comic link
Diffstat (limited to 'pages/random.php')
-rw-r--r--pages/random.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/pages/random.php b/pages/random.php new file mode 100644 index 0000000..15d7758 --- /dev/null +++ b/pages/random.php
@@ -0,0 +1,9 @@
1<?php
2
3$getcomic = "SELECT * FROM comics WHERE status = \"publish\" ORDER BY RAND() LIMIT 1";
4$getcomic2 = mysql_query($getcomic);
5$getcomic3 = mysql_fetch_array($getcomic2);
6
7header('Location: http://pillowcase.fourisland.com/comic' . $getcomic3['comic_id'] . '.htm');
8
9?>