1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-07 15:11:32 +01:00
vichan/random.php
2014-09-25 06:15:25 -03:00

10 lines
141 B
PHP

<?php
include "inc/functions.php";
$boards = listBoards();
$board = array_rand($boards);
header('Location: /'.$boards[$board]["uri"]);
?>