'.
'
'.
'
'.
''.
'
');
//if($RegistrationLimit->GetFreeRegistrationCount() == 0)
//{
// echo('Registrace pro dnešní den vyčerpány
');
// echo('Dnes bylo '.$RegistrationLimit->GetPerDeyRegistrationCount().' volných registrací
');
//} else
{
//echo('Pro tento den je povoleno '.$RegistrationLimit->GetPerDeyRegistrationCount().' volných registrací
');
//echo('Zbývá ještě '.$RegistrationLimit->GetFreeRegistrationCount().' volných registrací
');
echo('
');
if(($account == '') or ($password1 == '') or ($password2 == '') or ($email == '') or ($expansion == '') or ($agree == ''))
{
echo('Je nutno vyplnit všechny údaje
');
} else
{
if($password1 != $password2) echo('Zadaná hesla se neshodují');
else
{
$password = $password1;
$account = strtoupper($account);
$heslo = sha_password($account, $password);
$db->select_db($Config['Mangos']['DatabaseRealmd']);
$DbResult = $db->query('SELECT `id`, `username`, `sha_pass_hash` FROM `account` WHERE `username`="'.$account.'"');
if($DbResult->num_rows > 0)
{
echo('Účet již existuje
');
} else
{
$DbResult = $db->query('INSERT INTO `account` (`username`,`sha_pass_hash`,`email`,`expansion`) values ("'.$account.'","'.$heslo.'","'.$email.'","'.$expansion.'")');
echo('Účet '.$account.' byl vytvořen!
');
}
}
}
}
echo('');
?>