View Single Post
  #9  
Old 17th March 2011, 23:51
lafouine022 lafouine022 is offline
Senior Member
 
Join Date: Feb 2010
P2P
Posts: 120
Smile
No testing...

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"] >= 16106127360)     /* x2 15Go ;)*/
        
{
            
mysql_query("UPDATE torrents SET doubleupload = 'yes' WHERE id = $id");
        }else{
        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