Thread: FreeLeech
View Single Post
  #10  
Old 7th September 2008, 21:38
vertex vertex is offline
Senior Member
 
Join Date: Mar 2008
Posts: 46
Question
Now i have 1 golden torrent, i put freeleech mod and than all torrent is golden, but when i put back normal mod, golden torrent is 0.... My question is, how to my when you put back normal mod, again have only 1 golden torrent?

Quote:
Originally Posted by BoLaMN View Post
easy to code i think this is what ur after...

Place this in a new php file called "free.php"
works for me but i only had 1 torrent to test it on

Code:
<?
ob_start("ob_gzhandler");
require "include/bittorrent.php";
dbconn();
loggedinorreturn();
if (get_user_class() < UC_MODERATOR)
{
newerr("Error", "Access denied.",true,true);
}
if ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST")
{
if ($HTTP_POST_VARS["setto"] == "")
{
newerr("Error", "Missing form data.",true,true);
}
$what=$HTTP_POST_VARS["setto"];

switch( $what )
{
case 1 : // Freeleech
$freeleech='yes';
break;
case 2 : // Normal
$freeleech='no';
break;
default : newerr("Error", "Please choose if free or not free!");
}
mysql_query("UPDATE torrents SET free=".sqlesc($freeleech).$where) or sqlerr(__FILE__, __LINE__);

header("Location: browse.php");
die;
}
stdhead("Change all torrents");
?>
<h1>Set All Torrents to Free Leech or Normal.Just Click FreeLeech and click ok.</h1>
<form method=post action=free.php>
<table border=1 cellspacing=0 cellpadding=5>
<tr>
<td class=rowhead>Normal Or All Freeleech?</td>
<td>
<select name=setto>
<option value="0">---- Please Choose ----</option>
<option value="1">Freeleech</option>
<option value="2">Normal</option>
</select>
</td>
</tr>
<tr><td colspan=2 align=center><input type=submit value="Okay" class=btn></td></tr>
</table>
</form>
<?
stdfoot();
?>
BoLaMN
Reply With Quote