2004-12-19 23:16:46 +00:00
< ?
require ( " common.inc.php " );
include " register_judges.inc.php " ;
//authenticate based on email address and registration number from the SESSION
if ( ! ( $_SESSION [ 'email' ] && $_SESSION [ 'judges_id' ]) )
{
header ( " Location: register_judges.php " );
exit ;
}
$q = mysql_query ( " SELECT id FROM judges WHERE email=' " . $_SESSION [ 'email' ] . " ' AND id=' " . $_SESSION [ 'judges_id' ] . " ' " );
echo mysql_error ();
if ( mysql_num_rows ( $q ) == 0 )
{
header ( " Location: register_judges.php?action=logout " );
exit ;
}
//send the header
send_header ( " Judges Registration - Personal Information " );
echo " <a href= \" register_judges_main.php \" ><< " . i18n ( " Back to Judges Registration Summary " ) . " </a><br /> " ;
echo " <br /> " ;
if ( $_POST [ 'action' ] == " save " )
{
$dob = $_POST [ 'year' ] . " - " . $_POST [ 'month' ] . " - " . $_POST [ 'day' ];
2004-12-20 19:46:08 +00:00
if ( $_POST [ 'catpref' ]) $catpref = " ' " . $_POST [ 'catpref' ] . " ' " ;
else $catpref = " null " ;
2004-12-19 23:16:46 +00:00
mysql_query ( " UPDATE judges SET " .
" firstname=' " . mysql_escape_string ( stripslashes ( $_POST [ 'firstname' ])) . " ', " .
" lastname=' " . mysql_escape_string ( stripslashes ( $_POST [ 'lastname' ])) . " ', " .
" email=' " . mysql_escape_string ( stripslashes ( $_POST [ 'email' ])) . " ', " .
" address=' " . mysql_escape_string ( stripslashes ( $_POST [ 'address' ])) . " ', " .
" city=' " . mysql_escape_string ( stripslashes ( $_POST [ 'city' ])) . " ', " .
" province=' " . mysql_escape_string ( stripslashes ( $_POST [ 'province' ])) . " ', " .
" postalcode=' " . mysql_escape_string ( stripslashes ( $_POST [ 'postalcode' ])) . " ', " .
2004-12-20 19:46:08 +00:00
" phonehome=' " . mysql_escape_string ( stripslashes ( $_POST [ 'phonehome' ])) . " ', " .
" phonework=' " . mysql_escape_string ( stripslashes ( $_POST [ 'phonework' ])) . " ', " .
" phonecell=' " . mysql_escape_string ( stripslashes ( $_POST [ 'phonecell' ])) . " ', " .
2004-12-19 23:16:46 +00:00
" organization=' " . mysql_escape_string ( stripslashes ( $_POST [ 'organization' ])) . " ', " .
2004-12-20 19:46:08 +00:00
" catpref= $catpref , " .
2004-12-19 23:16:46 +00:00
" years_school=' " . mysql_escape_string ( stripslashes ( $_POST [ 'years_school' ])) . " ', " .
" years_regional=' " . mysql_escape_string ( stripslashes ( $_POST [ 'years_regional' ])) . " ', " .
" years_national=' " . mysql_escape_string ( stripslashes ( $_POST [ 'years_national' ])) . " ', " .
2004-12-20 19:46:08 +00:00
" willing_chair=' " . mysql_escape_string ( stripslashes ( $_POST [ 'willing_chair' ])) . " ', " .
" attending_lunch=' " . mysql_escape_string ( stripslashes ( $_POST [ 'attending_lunch' ])) . " ', " .
2004-12-19 23:16:46 +00:00
" dateofbirth=' $dob ' " .
" WHERE id=' " . $_SESSION [ 'judges_id' ] . " ' " );
echo mysql_error ();
echo notice ( i18n ( " %1 %2 successfully updated " , array ( $_POST [ 'firstname' ], $_POST [ 'lastname' ])));
}
$q = mysql_query ( " SELECT * FROM judges WHERE email=' " . $_SESSION [ 'email' ] . " ' AND id=' " . $_SESSION [ 'judges_id' ] . " ' " );
$judgeinfo = mysql_fetch_object ( $q );
//output the current status
$newstatus = personalStatus ();
if ( $newstatus != " complete " )
{
echo error ( i18n ( " Personal Information Incomplete " ));
}
else
{
echo happy ( i18n ( " Personal Information Complete " ));
}
echo " <form name= \" personalform \" method= \" post \" action= \" register_judges_personal.php \" > \n " ;
2004-12-20 19:49:15 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" save \" /> \n " ;
2004-12-19 23:16:46 +00:00
echo " <table> \n " ;
echo " <tr> \n " ;
echo " <td> " . i18n ( " First Name " ) . " </td><td><input type= \" text \" name= \" firstname \" value= \" $judgeinfo->firstname\ " /></ td > \n " ;
echo " <td> " . i18n ( " Last Name " ) . " </td><td><input type= \" text \" name= \" lastname \" value= \" $judgeinfo->lastname\ " /></ td > \n " ;
echo " </tr> \n " ;
echo " <tr> \n " ;
echo " <td> " . i18n ( " Email Address " ) . " </td><td><input type= \" text \" name= \" email \" value= \" $judgeinfo->email\ " /></ td > \n " ;
echo " <td> " . i18n ( " City " ) . " </td><td><input type= \" text \" name= \" city \" value= \" $judgeinfo->city\ " /></ td > \n " ;
echo " </tr> \n " ;
echo " <tr> \n " ;
echo " <td> " . i18n ( " Address " ) . " </td><td><input type= \" text \" name= \" address \" value= \" $judgeinfo->address\ " /></ td > \n " ;
2005-01-05 16:28:42 +00:00
echo " <td> " . i18n ( " Province " ) . " </td><td> " ;
emit_province_selector ( " province " , $judgeinfo -> province );
echo " </td> \n " ;
2004-12-19 23:16:46 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
echo " <td> " . i18n ( " Postal Code " ) . " </td><td><input type= \" text \" name= \" postalcode \" value= \" $judgeinfo->postalcode\ " /></ td > \n " ;
2004-12-20 19:46:08 +00:00
echo " <td> " . i18n ( " Phone (Home) " ) . " </td><td><input type= \" text \" name= \" phonehome \" value= \" $judgeinfo->phonehome\ " /></ td > \n " ;
2004-12-19 23:16:46 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
echo " <td> " . i18n ( " Date of Birth " ) . " </td><td> \n " ;
list ( $year , $month , $day ) = split ( " - " , $judgeinfo -> dateofbirth );
echo " <table><tr><td> " ;
emit_day_selector ( " day " , $day );
echo " </td><td> \n " ;
emit_month_selector ( " month " , $month );
echo " </td><td> \n " ;
emit_year_selector ( " year " , $year , date ( " Y " ) - $config [ 'maxjudgeage' ], date ( " Y " ) - $config [ 'minjudgeage' ]);
echo " </td></tr></table> \n " ;
echo " </td> \n " ;
2004-12-20 19:46:08 +00:00
echo " <td> " . i18n ( " Phone (Work) " ) . " </td><td><input type= \" text \" name= \" phonework \" value= \" $judgeinfo->phonework\ " /></ td > \n " ;
echo " </tr> " ;
echo " <tr> \n " ;
2004-12-19 23:16:46 +00:00
echo " <td> " . i18n ( " Organization " ) . " </td><td><input type= \" text \" name= \" organization \" value= \" $judgeinfo->organization\ " /></ td > \n " ;
2004-12-20 19:46:08 +00:00
echo " <td> " . i18n ( " Phone (Cell) " ) . " </td><td><input type= \" text \" name= \" phonecell \" value= \" $judgeinfo->phonecell\ " /></ td > \n " ;
2004-12-19 23:16:46 +00:00
echo " </tr> " ;
2004-12-20 19:46:08 +00:00
2004-12-19 23:16:46 +00:00
echo " <tr><td colspan= \" 4 \" ><hr /></td></tr> " ;
echo " <tr> \n " ;
2004-12-20 19:46:08 +00:00
echo " <td colspan= \" 2 \" > " . i18n ( " Age category preference " ) . " </td><td> " ;
$q = mysql_query ( " SELECT * FROM projectcategories ORDER BY mingrade " );
echo " <select name= \" catpref \" > " ;
echo " <option value= \" \" > " . i18n ( " Doesn't Matter " ) . " </option> \n " ;
while ( $r = mysql_fetch_object ( $q ))
{
if ( $judgeinfo -> catpref == $r -> id ) $sel = " selected= \" selected \" " ; else $sel = " " ;
echo " <option $sel value= \" $r->id\ " > " .i18n( " % 1 ( Grades % 2 -% 3 ) " ,array(i18n( $r->category ), $r->mingrade , $r->maxgrade )). " </ option > \n " ;
}
echo " </select> " ;
echo " </td> \n " ;
2004-12-19 23:16:46 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
2004-12-20 19:49:15 +00:00
echo " <td colspan= \" 2 \" > " . i18n ( " Years of judging experience at school/local level " ) . " </td><td><input type= \" text \" name= \" years_school \" value= \" $judgeinfo->years_school\ " size = \ " 3 \" /></td> \n " ;
2004-12-19 23:16:46 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
2004-12-20 19:49:15 +00:00
echo " <td colspan= \" 2 \" > " . i18n ( " Years of judging experience at regional level " ) . " </td><td><input type= \" text \" name= \" years_regional \" value= \" $judgeinfo->years_regional\ " size = \ " 3 \" /></td> \n " ;
2004-12-19 23:16:46 +00:00
echo " </tr> \n " ;
2004-12-20 19:46:08 +00:00
echo " <tr> \n " ;
2004-12-20 19:49:15 +00:00
echo " <td colspan= \" 2 \" > " . i18n ( " Years of judging experience at national level " ) . " </td><td><input type= \" text \" name= \" years_national \" value= \" $judgeinfo->years_national\ " size = \ " 3 \" /></td> \n " ;
2004-12-20 19:46:08 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
echo " <td colspan= \" 2 \" > " . i18n ( " Willing to act as a division chair? " ) . " </td><td> " ;
if ( $judgeinfo -> willing_chair == " no " ) $ch = " checked= \" checked \" " ; else $ch = " " ;
2004-12-20 19:49:15 +00:00
echo " <input $ch type= \" radio \" name= \" willing_chair \" value= \" no \" />No " ;
2004-12-20 19:46:08 +00:00
echo " " ;
if ( $judgeinfo -> willing_chair == " yes " ) $ch = " checked= \" checked \" " ; else $ch = " " ;
2004-12-20 19:49:15 +00:00
echo " <input $ch type= \" radio \" name= \" willing_chair \" value= \" yes \" />Yes " ;
2004-12-20 19:46:08 +00:00
echo " </td> \n " ;
echo " </tr> \n " ;
echo " <tr> \n " ;
echo " <td colspan= \" 2 \" > " . i18n ( " Attending lunch? " ) . " </td><td> " ;
if ( $judgeinfo -> attending_lunch == " no " ) $ch = " checked= \" checked \" " ; else $ch = " " ;
2004-12-20 19:49:15 +00:00
echo " <input $ch type= \" radio \" name= \" attending_lunch \" value= \" no \" />No " ;
2004-12-20 19:46:08 +00:00
echo " " ;
if ( $judgeinfo -> attending_lunch == " yes " ) $ch = " checked= \" checked \" " ; else $ch = " " ;
2004-12-20 19:49:15 +00:00
echo " <input $ch type= \" radio \" name= \" attending_lunch \" value= \" yes \" />Yes " ;
2004-12-20 19:46:08 +00:00
echo " </td> \n " ;
echo " </tr> \n " ;
2004-12-20 19:49:15 +00:00
echo " </table> " ;
echo " <input type= \" submit \" value= \" " . i18n ( " Save Personal Information " ) . " \" /> \n " ;
echo " </form> " ;
2004-12-19 23:16:46 +00:00
2004-12-20 19:49:15 +00:00
send_footer ();
2004-12-19 23:16:46 +00:00
?>