require("common.inc.php");
include "register_participants.inc.php";
//authenticate based on email address and registration number from the SESSION
if(!$_SESSION['email'])
{
header("Location: register_participants.php");
exit;
}
if(! ($_SESSION['registration_number'] && $_SESSION['registration_id']))
{
header("Location: register_participants.php");
exit;
}
$q=mysql_query("SELECT registrations.id AS regid, students.id AS studentid, students.firstname FROM registrations,students ".
"WHERE students.email='".$_SESSION['email']."' ".
"AND registrations.num='".$_SESSION['registration_number']."' ".
"AND registrations.id='".$_SESSION['registration_id']."' ".
"AND students.registrations_id=registrations.id ".
"AND registrations.year=".$config['FAIRYEAR']." ".
"AND students.year=".$config['FAIRYEAR']);
echo mysql_error();
if(mysql_num_rows($q)==0)
{
header("Location: register_participants.php?action=logout");
exit;
}
$r=mysql_fetch_object($q);
send_header("Participant Registration - Summary");
//only display the named greeting if we have their name
if($r->firstname)
{
echo i18n("Hello %1",array($r->firstname));
echo "
";
}
echo "
";
echo i18n("Please use the checklist below to complete your registration. Click on an item in the table to edit that information. When you have entered all information, the Status field will change to Complete");
echo "
";
echo "
";
echo "
".i18n("Registration Item")." | ".i18n("Status")." |
---|---|
"; echo ""; echo i18n("Student Information"); echo ""; echo " | "; //check to see if its complete $status=studentStatus(); echo outputStatus($status); echo " |
"; if($status=="complete") echo ""; echo i18n("Project Information"); if($status=="complete") echo ""; echo " | "; //check to see if its complete $status=projectStatus(); echo outputStatus($status); echo " |
".i18n("Safety Information")." | "; //check to see if its complete echo " |
".i18n("Signature Page")." | "; //check to see if its complete echo " |
".i18n("Signature Page Received")." | "; //check to see if its complete echo " |