View Single Post
  #3  
Old 24th January 2011, 23:05
lafouine022 lafouine022 is offline
Senior Member
 
Join Date: Feb 2010
P2P
Posts: 120
Wink
for you Marco autofree torrent size >10go else autosilver torrent size> 4go ;)

PHP Code:
      /*
+--------------------------------------------------------------------------
|   Fouini auto free
+---------------------------------------------------------------------------
*/
 
$q mysql_query("SELECT size FROM torrents WHERE id = $id");
    if (
mysql_num_rows($q) > 0)
    {
        
$rf mysql_fetch_array($q);
        
        if (
$rf["size"] >= 10737418240)     /* free 10Go ;)*/
        
{
            
mysql_query("UPDATE torrents SET free = 'yes' WHERE id = $id");
        }else{
        if (
$rf["size"] >= 4294967296)   /* silver 4Go ;)*/
           
mysql_query("UPDATE torrents SET silver = 'yes' WHERE id = $id");
        }
    } 
Reply With Quote
The Following User Says Thank You to lafouine022 For This Useful Post:
eckeO5 (17th November 2011)