Hello,
I'm trying to make the ban on an account through my php. I am not knowing generate the correct value for unban_time ...
Using the basis of Ceres I got this:
DEFINE('PARTNER_BAN', "UPDATE `login` SET `unban_time` = NOW() + '%d' WHERE `account_id` = '%d' AND `unban_time` = '0'");
What...