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

10 lines
161 B
PHP

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