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.

comment.php 212B

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