1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 16:00:22 +01:00
vichan/random.php

11 lines
139 B
PHP
Raw Normal View History

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