26 lines
632 B
PHP
26 lines
632 B
PHP
<?php
|
|
|
|
session_start();
|
|
|
|
include_once ("../../queries/group_member.php");
|
|
|
|
$groups = json_decode($_POST["groups"]);
|
|
|
|
// Add each group as list item.
|
|
foreach($groups as $i => $group) {
|
|
?>
|
|
<li class='group-item'>
|
|
<form action='group.php' method='get'>
|
|
<button type='submit'
|
|
name='groupname'
|
|
value='<?= $group->name ?>'>
|
|
<div class='group'>
|
|
<img alt='PF' class='group-picture' src='<?= $group->picture ?>'/>
|
|
<?= $group->name ?>
|
|
</div>
|
|
</button>
|
|
</form>
|
|
</li>
|
|
<?php
|
|
}
|