$CURUSER['seedbonus']) stderr('Error','You do not have such bonus!'); $tsql = sql_query("SELECT owner FROM torrents WHERE id = $torrentid") or sqlerr(__FILE__,__LINE__); $arr = mysql_fetch_assoc($tsql); if (!$arr) stderr("Error", "Invalid torrent id!"); $torrentowner = $arr['owner']; if($torrentowner == $userid) stderr('Error', 'You are giving magic to yourself.'); $tsql = sql_query("SELECT COUNT(*) FROM magic WHERE torrentid=$torrentid and userid=$userid") or sqlerr(__FILE__,__LINE__); $trows = mysql_fetch_assoc($tsql); $t_ab = $trows[0]; if ($t_ab != 0) stderr("Error", "You already gave the magic value!"); if (isset($userid) && isset($torrentid)&& isset($value)) { sql_query("INSERT INTO magic (torrentid, userid,value) VALUES ($torrentid, $userid, $value)") or sqlerr(__FILE__,__LINE__); KPS("-",$value,$CURUSER['id']);//selete KPS("+",$value,$torrentowner);//add to the owner }