Added queries and functions for adding group members.

This commit is contained in:
K. Nobel
2017-02-01 12:19:59 +01:00
parent 6b13db9c4f
commit 58bb89f9b4
4 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
session_start();
if(empty($_POST["grp"])) {
header('HTTP/1.1 500 Non enough arguments');
}
require_once("../../queries/group_page.php");
echo selectGroupRole($_POST["grp"]);