View Single Post
  #4  
Old 3rd March 2010, 14:08
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Quote:
Originally Posted by yordanov2010 View Post
what is fts? copied/modified version of xam 1.3/3/4/5 series?

btw do you really know anything about coding? if yes please let me know what does following lines means;

PHP Code:
$dt sqlesc(get_date_time());
$msg sqlesc("Your warning has been removed. Please keep in your best behaviour from now on.\n"); 


Code:
$dt = sqlesc(get_date_time());
is a call to 2 functions to generate a time stamp and set it as a variable {$dt}!
Code:
$msg = sqlesc("Your warning has been removed. Please keep in your best behaviour from now on.\n");
is all call to a function to clean up a message and add forward slashes to all {" ' and "} to help stop sql injections
and to set that message as a variable {$msg}

if you want to test a coder you well need to try harder then that
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote