PrgStart(); if($player->Check()) { if(array_key_exists('zmenit', $_POST) and ($_POST['zmenit'] == 1)) { $account = $_POST['acc1']; $email1 = $_POST['email1']; $email2 = $_POST['email2']; $db->select_db($Config['Mangos']['DatabaseRealmd']); $DbResult = $db->query('select id from account where username="'.$account.'" and email="'.$email1.'"'); if($DbResult->num_rows > 0) { $email_update = $db->query('update account set email="'.$email2.'" where username="'.$account.'"'); if($email_update) { $info = 'Email byl vpořádku změněn!'; } else { $info = 'Email se nepodařilo změnit!'; } } else $info = 'Zadali jste špatný stávající email nebo neexistující účet!'; } echo(' <- Zpět do správy účtu
'); echo(''.$info.'

Změna e-mailu

Starý e-mail :
Nový e-mail :
'); } else { $player->LoginForm(); } $html->PrgStop(); ?>