1900 && $d['month'] > 0 && $d['day'] > 0) {
$u['birthdate'] = sprintf("%04d-%02d-%02d", $d['year'], $d['month'], $d['day']);
$update['birthdate'] = $u['birthdate'];
} else {
$update['birthdate'] = '';
$u['birthdate'] = NULL;
}
}
user_save($mysqli, $u);
/* If the grade changed, also recomputes the category (needs the user to be updated and
* saved first) */
if($old_grade !== $u['grade']) {
$p = project_load($mysqli, $u['s_pid']);
project_update_category($mysqli, $p);
project_save($mysqli, $p);
}
incomplete_check($mysqli, $ret, $u, $page_id, true);
form_ajax_response(array('status'=>0, 'missing'=>$ret, 'val'=>$update));
exit();
}
$help = '
query("SELECT id,school,city FROM schools WHERE year='{$config['year']}' ORDER by city,school");
while($r=$q->fetch_assoc()) {
$schools[$r['id']] = "{$r['city']} - {$r['school']}";
}
list($min_grade, $max_grade) = categories_grade_range($mysqli);
for($x=$min_grade;$x<=$max_grade;$x++) $grades[$x] = $x;
$d = array("A"=>'San', "B"=>"Los", "C"=>"Vanc", "D"=>"Tor");
form_begin($form_id, 's_personal.php', $closed);
form_text($form_id, 'firstname', "First Name", $u);
form_text($form_id, 'lastname', "Last Name", $u);
form_text($form_id, 'pronounce', "Name Pronunciation Key", $u);
form_radio_h($form_id, 'sex', 'Gender', array( 'male' => 'Male', 'female' => 'Female'), $u);
form_text($form_id, 'birthdate', "Date of Birth", $u, 'date');
form_text($form_id, 'phone1', "Phone", $u, 'tel');
form_text($form_id, 'address', 'Address 1', $u);
form_text($form_id, 'address2', 'Address 2', $u);
form_text($form_id, 'city', 'City', $u);
form_province($form_id, 'province', 'Province / Territory', $u);
form_text($form_id, 'postalcode', 'Postal Code', $u);
form_select_filterable($form_id, 'schools_id','School', $schools, $u);
form_select($form_id, 'grade', 'Grade', $grades, $u);
form_text($form_id, 's_teacher', 'Teacher Name', $u);
form_text($form_id, 's_teacher_email', 'Teacher E-Mail', $u);
form_text($form_id, 'medicalert', 'Medical Alert Info', $u);
form_submit($form_id, 'save', 'Save', 'Information Saved');
form_end($form_id);
?>
Note: Changing your grade will delete your tour selections, special award selections, and could change your project Age Category.