mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
27 lines
985 B
PHP
27 lines
985 B
PHP
<?php
|
|
require_once("../include/bittorrent.php");
|
|
dbconn();
|
|
loggedinorreturn();
|
|
|
|
|
|
if (isset($_GET['id']))
|
|
stderr("Party is over!", "This trick doesn't work anymore. You need to click the button!");
|
|
$userid = $CURUSER["id"];
|
|
$torrentid = $_POST["id"];
|
|
$tsql = sql_query("SELECT owner FROM torrents where id=".sqlesc($torrentid));
|
|
$arr = mysql_fetch_array($tsql);
|
|
if (!$arr)
|
|
stderr("Error", "Invalid torrent id!");
|
|
$torrentowner = $arr['owner'];
|
|
$tsql = sql_query("SELECT COUNT(*) FROM thanks where torrentid=".sqlesc($torrentid)." and userid=".sqlesc($userid));
|
|
$trows = mysql_fetch_array($tsql);
|
|
$t_ab = $trows[0];
|
|
if ($t_ab != 0)
|
|
stderr("Error", "You already said thanks!");
|
|
if (isset($userid) && isset($torrentid))
|
|
{
|
|
$res = sql_query("INSERT INTO thanks (torrentid, userid) VALUES (".sqlesc($torrentid).", ".sqlesc($userid).")");
|
|
KPS("+",$saythanks_bonus,$CURUSER['id']);//User gets bonus for saying thanks
|
|
KPS("+",$receivethanks_bonus,$torrentowner);//Thanks receiver get bonus
|
|
}
|