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