-
Notifications
You must be signed in to change notification settings - Fork 0
/
freq.php
48 lines (40 loc) · 945 Bytes
/
freq.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
<?php
/**
* index.php
*
*Facelink home page with registration and login form
*
* Written by: Monideep a.k.a. deep The Grandmaster of PHP
*
*/
include_once 'includes/functions.php';
include_once 'includes/tolink.php';
include_once 'includes/time_stamp.php';
include_once 'session.php';
?>
<?php
if(!$session->logged_in){
header("location:index.php");
}
else
if($session->logged_in)
{
?>
<?php
$fun=$_REQUEST['fun'];
$d=$_REQUEST['d'];
if($d=='y'){
mysql_query("insert into frnd values('$session->username','$fun','yes')");
mysql_query("update frnd set status='yes' where fun='$session->username' and un='$fun' and status='no'");
//echo "done";
}
else if($d=='n'){
mysql_query("delete from frnd where fun='$session->username' and un='$fun' and status='no'");
//echo "delete";
}
//echo mysql_error();
header("Location: home.php");
?>
<?php
}
?>