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"]);
?>