Gazelle/sections/friends/remove.php

9 lines
139 B
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
2013-04-19 08:00:55 +00:00
$DB->query("
DELETE FROM friends
WHERE UserID='$LoggedUser[ID]'
AND FriendID='$P[friendid]'");
2011-03-28 14:21:28 +00:00
header('Location: friends.php');
2013-04-19 08:00:55 +00:00
?>