<< ".i18n("Back to Participant Registration Summary")."
"; echo "
"; //now do any data saves if($_POST['action']=="save") { if(registrationFormsReceived()) { echo error(i18n("Cannot make changes to forms once they have been received by the fair")); } else { $x=1; while($_POST["num"][$x]) { if($_POST['id'][$x]==0) { //only insert if we have a name if($_POST['firstname'][$x] && $_POST['lastname'][$x]) { //INSERT new record mysql_query("INSERT INTO mentors (registrations_id,firstname,lastname,email,phone,organization,position,description,year) VALUES (". "'".$_SESSION['registration_id']."', ". "'".mysql_escape_string(stripslashes($_POST['firstname'][$x]))."', ". "'".mysql_escape_string(stripslashes($_POST['lastname'][$x]))."', ". "'".mysql_escape_string(stripslashes($_POST['email'][$x]))."', ". "'".mysql_escape_string(stripslashes($_POST['phone'][$x]))."', ". "'".mysql_escape_string(stripslashes($_POST['organization'][$x]))."', ". "'".mysql_escape_string(stripslashes($_POST['position'][$x]))."', ". "'".mysql_escape_string(stripslashes($_POST['description'][$x]))."', ". "'".$config['FAIRYEAR']."')"); echo mysql_error(); echo notice(i18n("%1 %2 successfully added",array($_POST['firstname'][$x],$_POST['lastname'][$x]))); } } else { //UPDATE existing record mysql_query("UPDATE mentors SET ". "firstname='".mysql_escape_string(stripslashes($_POST['firstname'][$x]))."', ". "lastname='".mysql_escape_string(stripslashes($_POST['lastname'][$x]))."', ". "email='".mysql_escape_string(stripslashes($_POST['email'][$x]))."', ". "phone='".mysql_escape_string(stripslashes($_POST['phone'][$x]))."', ". "organization='".mysql_escape_string(stripslashes($_POST['organization'][$x]))."', ". "position='".mysql_escape_string(stripslashes($_POST['position'][$x]))."', ". "description='".mysql_escape_string(stripslashes($_POST['description'][$x]))."' ". "WHERE id='".$_POST['id'][$x]."'"); echo notice(i18n("%1 %2 successfully updated",array($_POST['firstname'][$x],$_POST['lastname'][$x]))); } $x++; } } } if($_GET['action']=="removementor") { if(registrationFormsReceived()) { echo error(i18n("Cannot make changes to forms once they have been received by the fair")); } else { //first make sure this is one belonging to this registration id $q=mysql_query("SELECT id FROM mentors WHERE id='".$_GET['removementor']."' AND registrations_id='".$_SESSION['registration_id']."'"); if(mysql_num_rows($q)==1) { mysql_query("DELETE FROM mentors WHERE id='".$_GET['removementor']."' AND registrations_id='".$_SESSION['registration_id']."'"); echo notice(i18n("Mentor successfully removed")); } else { echo error(i18n("Invalid mentor to remove")); } } } //now query and display $q=mysql_query("SELECT nummentors FROM registrations WHERE id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'"); $r=mysql_fetch_object($q); $registrations_nummentors=$r->nummentors; $q=mysql_query("SELECT * FROM mentors WHERE registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'"); $numfound=mysql_num_rows($q); if(isset($_GET['nummentors'])) { mysql_query("UPDATE registrations SET nummentors='".$_GET['nummentors']."' WHERE id='".$_SESSION['registration_id']."'"); $registrations_nummentors=$_GET['nummentors']; $numtoshow=$_GET['nummentors']; } else $numtoshow=$numfound; //output the current status $newstatus=mentorStatus(); if($newstatus!="complete") { echo error(i18n("Mentor Information Incomplete")); } else if($newstatus=="complete") { echo happy(i18n("Mentor Information Complete")); } echo "
"; echo i18n("Number of mentors that helped with the project: "); echo ""; echo "
"; echo "
"; echo ""; for($x=1;$x<=$numtoshow;$x++) { $mentorinfo=mysql_fetch_object($q); echo "

".i18n("Mentor %1 Details",array($x))."

"; //if we have a valid mentor, set their ID, so we can UPDATE when we submit //if there is no record for this mentor, then set the ID to 0, so we will INSERT when we submit if($mentorinfo->id) $id=$mentorinfo->id; else $id=0; //true should work here, it just has to be set to _something_ for it to work. echo ""; //save the ID, or 0 if it doesnt exist echo ""; echo ""; echo "\n"; echo " \n"; echo " \n"; echo "\n"; echo "\n"; echo " \n"; echo " \n"; echo "\n"; echo "\n"; echo " \n"; echo " \n"; echo "\n"; echo "\n"; echo " "; echo "\n"; echo "\n"; echo "
".i18n("First Name")."firstname\" />".i18n("Last Name")."lastname\" />
".i18n("Email Address")."email\" />".i18n("Phone")."phone\" />
".i18n("Organization")."organization\" />".i18n("Position")."position\" />
".i18n("Description of help")."
"; if($mentorinfo->id) { echo "
id\">".i18n("Remove this Mentor from project")."
"; } echo "
"; echo "
"; } if($numtoshow) { echo "\n"; } echo "
"; send_footer(); ?>