10 lines
202 B
PHP
10 lines
202 B
PHP
<?php
|
|
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . "/config.php");
|
|
|
|
if ($_SESSION['id'] && $_POST['groupId']) {
|
|
|
|
$post = clearInputData($_POST);
|
|
|
|
echo RocketChat::getGroupUsers($post['groupId']);
|
|
} |