-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.php
72 lines (55 loc) · 1.72 KB
/
members.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
require_once 'header.php';
if(!$loggedin) die();
echo "<div class='main'>";
if(isset($_GET['view']))
{
$view =sanitizeString($_GET['view']);
if($view ==$user ) $name= "Your";
else $name= "$view's";
echo "<h3>$name Profile</h3>";
showProfile($view);
echo "<a class='botton' href='messages.php?view=$view'>".
"View $name messages</a><br><br>";
die("</div></body></html>");
}
if (isset($_GET['add']))
{
$add= sanitizeString($_GET['add']);
$result=queryMysql("SELECT * FROM friends WHERE user='$add' AND friend='$user' ");
if(!$result->num_rows)
queryMysql("INSERT INTO friends VALUES ( '$add','$user')");
}
elseif(isset($_GET['remove']))
{
$remove= sanitizeString($_GET['remove']);
queryMysql("DELETE FROM friends WHERE user='$remove' AND friend='$user'");
}
$result = queryMysql("SELECT user FROM members ORDER BY user");
$num= $result ->num_rows;
echo"<h3> Other Members</h3><ul>";
for($j=0 ;$j<$num;++$j)
{
$row =$result->fetch_array(MYSQLI_ASSOC);
if($row['user']==$user) continue;
echo"<li><a href ='members.php?view=".
$row['user']."'>".$row['user']."</a>";
$follow="follow";
$result1=queryMysql("SELECT * FROM friends WHERE
user='".$row['user']."' AND friend ='$user'");
$t1 = $result1->num_rows;
$result1=queryMysql("SELECT * FROM friends WHERE
user='$user' AND friend='".$row['user']."'");
$t2 = $result1->num_rows;
if(($t1+$t2)>1) echo"↔ is a mutual friend";
elseif ($t1) echo "← you are following";
elseif ($t2) echo "→ is following you";
$follow="recip";
if( !$t1) echo"[<a href='members.php?add=".$row['user']."'>$follow</a>]";
else
echo "[<a href='members.php?remove=".$row['user']."'>drop</a>]";
}
?>
</ul></div>
</body>
</html>