Gazelle/sections/friends/remove.php
2013-04-19 08:00:55 +00:00

9 lines
139 B
PHP

<?
$DB->query("
DELETE FROM friends
WHERE UserID='$LoggedUser[ID]'
AND FriendID='$P[friendid]'");
header('Location: friends.php');
?>