1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-12 09:13:07 +01:00
vichan/random.php

11 lines
139 B
PHP
Raw Normal View History

2014-09-23 20:12:32 +00:00
<?php
include "inc/functions.php";
$boards = listBoards(true);
2014-09-23 20:12:32 +00:00
$board = array_rand($boards);
header('Location: /'.$boards[$board]);
2014-09-25 06:15:25 -03:00
?>