hajime/public/members.php

19 lines
494 B
PHP
Raw Normal View History

2023-08-11 22:16:32 +00:00
<?php
// members.php
// Last update: 2015-01-09
// Require core components
require_once __DIR__ . '/../startup.php';
if(isset($_GET['gid']) && $flashii->getRankdata($_GET['gid']) && $_GET['gid'] != 0) {
$rank = $flashii->getRankdata($_GET['gid'])['gid'];
$name = $flashii->getRankdata($rank)['mname'];
$colour = $flashii->getRankdata($rank)['colour'];
} else {
$rank = null;
$name = 'All members';
$colour = null;
}
require_once fiiSwitch_path();