1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 15:40:12 +01:00
vichan/random.php

9 lines
143 B
PHP
Raw Normal View History

2014-09-23 22:12:32 +02:00
<?php
include "inc/functions.php";
$boards = listBoards(TRUE, TRUE);
2014-09-23 22:12:32 +02:00
$board = array_rand($boards);
2014-09-26 00:53:56 +02:00
header('Location: /'.$boards[$board]);
?>