-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_users.php
45 lines (38 loc) · 2.84 KB
/
my_users.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<div class="col-lg-3 col-sm-6 recently request">
<div class="friend-list-view">
<!-- profile picture end -->
<!-- profile picture end -->
<div class="profile-thumb">
<a href="profile.php">
<figure class="profile-thumb-middle">
<?php
$image = " ";
if($FRIEND_ROW['gender'] == "Male")
{
$image = "image/male.jpg";
}elseif ($FRIEND_ROW['gender'] == "Female")
{
$image = "image/female.jpg";
}else
{
$image = "image/male.jpg";
}
if(file_exists($FRIEND_ROW['profile_image']))
{
$image = $image_class->get_thumb_profile($FRIEND_ROW['profile_image']);
}
?>
<img src="<?php echo $image; ?>">
</figure>
</a>
</div>
<!-- profile picture end -->
<div class="posted-author">
<h6 class="author"><a href="profile.php?id=<?php echo $FRIEND_ROW['userid'];?>"><?php echo $FRIEND_ROW['first_name'] . " " . $FRIEND_ROW['last_name'];
echo "<br><br>";
echo $FRIEND_ROW['field'];
?></a></h6>
<!--<button class="add-frnd">add friend</button>-->
</div>
</div>
</div>