Thread: My Modded TBDev
View Single Post
  #17  
Old 10th October 2016, 13:27
fireknight's Avatar
fireknight fireknight is offline
Administrator
 
Join Date: Aug 2010
Australia
Posts: 173
Default
Personally I cannot stand the query stats.
I think they are a waste of time. ( they look cool the first couple of times seeing them, then they just look crap )
I would never include them in a source release ( yes they are in FreeTSP - added by Krypto )
I would include an add on mod for integrating them into the source code in the forums, for members who wanted them.

Then the sql_query(); function would become a lot simpler.

Code:
function sql_query($query)
{
    $result = mysql_query($query);

    return $result;
}
Reply With Quote