mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
20 lines
400 B
PHP
20 lines
400 B
PHP
<?
|
|
authorize();
|
|
if (!is_number($_GET['friendid'])) {
|
|
error(404);
|
|
}
|
|
$FriendID = db_string($_GET['friendid']);
|
|
|
|
// Check if the user $FriendID exists
|
|
$DB->query("SELECT 1 FROM users_main WHERE ID = '$FriendID'");
|
|
if ($DB->record_count() == 0) {
|
|
error(404);
|
|
}
|
|
|
|
$DB->query("
|
|
INSERT IGNORE INTO friends
|
|
(UserID, FriendID)
|
|
VALUES ('$LoggedUser[ID]', '$FriendID')");
|
|
|
|
header('Location: friends.php');
|