Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
if ($_POST['type'] != '') {
$account->type = intval($_POST['type']);
// set study year
if($account->type == 0) {
if ($_POST['country'] == 'US' || $_POST['country'] == 'CA') {
$account->study_year = $_POST['study_year_america'];
} else {
$account->study_year = $_POST['study_year_default'];
}
}
}