mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-29 09:44:28 +01:00
9 lines
138 B
PHP
9 lines
138 B
PHP
|
<?php
|
||
|
|
||
|
include "inc/functions.php";
|
||
|
|
||
|
$boards = listBoards();
|
||
|
$board = array_rand($boards);
|
||
|
|
||
|
header('Location: /'.$boards[$board]["uri"]);
|