BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

remove.php 187B

12345678910
  1. <?php
  2. declare(strict_types = 1);
  3. $DB->prepared_query("
  4. DELETE FROM `friends`
  5. WHERE `UserID`='$LoggedUser[ID]'
  6. AND `FriendID`='$P[friendid]'
  7. ");
  8. header('Location: friends.php');