<< ".i18n("Back to Participant Registration Summary")."
"; echo "
"; $q=mysql_query("SELECT * FROM students WHERE registrations_id='".$_SESSION['registration_id']."' AND year='".$config['FAIRYEAR']."'"); if(mysql_num_rows($q)==0) { //uhh oh, we didnt find any, this isnt possible! lets insert one using the logged in persons email address //although... this can never really happen, since the above queries only allow the page to view if the student //is found in the students table... soo... well, lets leave it here as a fallback anyways, just incase mysql_query("INSERT INTO students (registrations_id,email,year) VALUES ('".$_SESSION['registration_id']."','".mysql_escape_string($_SESSION['email'])."','".$config['FAIRYEAR']."')"); //if we just inserted it, then we will obviously find 1 $numfound=1; } else { $numfound=mysql_num_rows($q); } echo "
"; echo i18n("Number of students that worked on the project: "); echo ""; echo "
"; if($_GET['numstudents']) $numtoshow=$_GET['numstudents']; else $numtoshow=$numfound; for($x=1;$x<=$numtoshow;$x++) { $studentinfo=mysql_fetch_object($q); echo "

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

"; 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 " \n"; echo " "; echo ""; /*
".i18n("First Name")."firstname\">".i18n("Last Name")."lastname\">
".i18n("Address")."address\">".i18n("City")."city\">
".i18n("Postal Code")."postalcode\">".i18n("Phone")."phone\">
".i18n("Date of Birth")."\n"; list($year,$month,$day)=split("-",$studentinfo->dateofbirth); echo "
"; emit_day_selector("day$x",$day); echo "\n"; emit_month_selector("month$x",$month); echo "\n"; emit_year_selector("year$x",$year,date("Y")-19,date("Y")-10); echo "
\n"; echo "
".i18n("Grade")."\n"; echo "\n"; echo "
echo "".i18n("Name").": name\">"; */ echo ""; echo "
"; echo "
"; } send_footer(); ?>