the formula to create account is
Login+Password = MD5
on php will be
PHP Code:
$login = "electric2008"
$pw = "123"
$id = 1
$Salt = $Salt.$pw;
$Salt = md5($Salt);
echo "insert into account (id,name,passwd,creatime) values ({$id},'{$login}',$Salt,'2013-08-22 00:00:00.000')"
put into any php website and on login write your login , same with pw,
Note: check the account table and take the last id
like if you find the max id 54 you wil change id to 55 because if you have accounts with same id will make issue with chars in both account