0)); exit(); } if($mentors == 0) { if($p['num_mentors'] > 0) { $mysqli->real_query("DELETE FROM mentors WHERE pid='{$p['pid']}'"); } $p['num_mentors'] = 0; project_save($mysqli, $p); form_ajax_response(array('status'=>0)); /* javascript will delete all the html */ exit(); } else if($mentors == true && $p['num_mentors'] == 0) { /* Add one to startw ith */ $mid = mentor_create($mysqli, $p['pid']); $p['num_mentors'] = 1; project_save($mysqli, $p); form_ajax_response(array('status'=>0, 'location'=>'s_mentor.php')); exit(); } form_ajax_response(array('status'=>0)); exit(); case 'savem': if($closed) exit(); post_text($mid, 'id'); $m = mentor_load($mysqli, $mid); if($m['pid'] != $p['pid']) { print("Error 1030: This project cannot load this mentor"); exit(); } post_text($m['firstname'], "firstname$mid"); post_text($m['lastname'], "lastname$mid"); post_text($m['email'], "email$mid"); post_text($m['phone'], "phone$mid"); post_text($m['organization'], "organization$mid"); post_text($m['position'], "position$mid"); post_text($m['desc'], "desc$mid"); filter_phone($m['phone']); mentor_save($mysqli, $m); incomplete_check($mysqli, $fields, $u, $page_id, true); form_ajax_response(array('status'=>0, 'missing'=>$fields)); exit(); case 'add': if($closed) exit(); if($p['num_mentors'] < 10) { $mid = mentor_create($mysqli, $p['pid']); $p['num_mentors'] += 1; project_save($mysqli, $p); incomplete_check($mysqli, $fields, $u, $page_id, true); form_ajax_response(array('status'=>0, 'location'=>'s_mentor.php')); } else { form_ajax_response(array('status'=>0, 'error'=>'Limit of 10 mentors reached')); } exit(); case 'del': if($closed) exit(); post_int($mid, 'mid'); $mysqli->real_query("DELETE FROM mentors WHERE pid='{$p['pid']}' AND id='$mid'"); $q = $mysqli->query("SELECT * FROM mentors WHERE pid='{$p['pid']}'"); $p['num_mentors'] = $q->num_rows; project_save($mysqli, $p); incomplete_check($mysqli, $fields, $u, $page_id, true); form_ajax_response(array('status'=>0, 'missing'=>$fields)); exit(); } $help = '

Please tell us about any mentors who assisted you in your project.

Example of "mentorship" interactions. These are just examples, not complete lists:

Examples of interactions that are not considered mentorship:

Other Info

'; sfiab_page_begin($u, "Student Personal", $page_id, $help); $num_mentors = $p['num_mentors']; ?>

Project Mentorship Information

A project mentor is someone who has given considerable assistance to a project. See the help panel on the right (click on the info icon at the top right) for examples of what would be considered mentorship. $u) { $x++; $form_id = $page_id.'_form_'.$mid; print("

Mentor $x

"); form_begin($form_id, 's_mentor.php', $closed); form_text($form_id, "firstname$mid", "First Name", $u['firstname']); form_text($form_id, "lastname$mid", "Last Name", $u['lastname']); form_text($form_id, "email$mid", "Email", $u['email'], 'email'); form_text($form_id, "phone$mid", "Phone", $u['phone'], 'tel'); form_text($form_id, "organization$mid", 'Organization', $u['organization']); form_text($form_id, "position$mid", 'Position', $u['position']); form_hidden($form_id, 'id', $mid); form_textbox($form_id, "desc$mid", 'Description of Help', $u['desc']); ?>