-
Notifications
You must be signed in to change notification settings - Fork 2
/
Clubs.php
27 lines (15 loc) · 858 Bytes
/
Clubs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
include('get_following.php');?>
<div class="status-wrapper">
<?php foreach($Clubs as $person){?>
<form method="post" action="follower_acc.php" id="quick_access<?php echo $person['User_ID'];?>">
<div class="status-card">
<input type="hidden" value="<?php echo $person['User_ID']?>" name="target_id">
<div class="profile-pic" style="cursor: pointer;">
<img onclick="document.getElementById('quick_access'+<?php echo $person['User_ID'];?>).submit();" src="<?php echo "assets/images/profiles/".$person['IMAGE']?>" name="quick_access">
</div>
<p class="username" style="color: gray; font-weight: bold;"><?php echo $person['USER_NAME']?></p>
</div>
</form>
<?php }?>
</div>