2004-12-14 14:56:34 +00:00
< ?
require ( " common.inc.php " );
include " register_participants.inc.php " ;
2005-01-18 03:33:37 +00:00
require ( " lpdf.php " );
2004-12-14 14:56:34 +00:00
//authenticate based on email address and registration number from the SESSION
if ( ! $_SESSION [ 'email' ])
{
header ( " Location: register_participants.php " );
exit ;
}
if ( ! $_SESSION [ 'registration_number' ])
{
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 " );
exit ;
}
$authinfo = mysql_fetch_object ( $q );
//END OF AUTH, now lets try to generate a PDF using only PHP :) this should be fun!
2005-01-18 03:33:37 +00:00
$pdf = new lpdf ( i18n ( $config [ 'fairname' ]),
i18n ( " Participant Signature Page " ),
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . " /data/logo-200.gif "
);
2004-12-14 14:56:34 +00:00
2005-01-18 03:33:37 +00:00
$pdf -> newPage ();
$height [ 'sigspace' ] = 0.50 ;
$pdf -> setFontSize ( 11 );
2004-12-14 15:35:57 +00:00
2005-01-18 03:33:37 +00:00
/*
2004-12-14 14:56:34 +00:00
//The title of the fair
2004-12-14 15:35:57 +00:00
$yloc = 10.25 ;
2004-12-14 14:56:34 +00:00
$height [ 'title' ] = 0.25 ;
$height [ 'subtitle' ] = 0.22 ;
$height [ 'topbox' ] = 0.8 ;
$height [ 'exhibitortitle' ] = 0.2 ;
2004-12-14 15:35:57 +00:00
$height [ 'exhibitorbox' ] = 1.3 ;
2004-12-14 14:56:34 +00:00
$height [ 'exhibitorsigtext' ] = 0.13 ;
$height [ 'parenttitle' ] = 0.2 ;
2005-01-05 14:32:24 +00:00
$height [ 'parentbox' ] = 2.80 ;
2004-12-14 14:56:34 +00:00
$height [ 'parentsigtext' ] = 0.13 ;
2005-01-18 03:33:37 +00:00
*/
2004-12-14 14:56:34 +00:00
//grab the project info
$q = mysql_query ( " SELECT * FROM projects WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
$projectinfo = mysql_fetch_object ( $q );
$q = mysql_query ( " SELECT * FROM students WHERE registrations_id=' " . $_SESSION [ 'registration_id' ] . " ' AND year=' " . $config [ 'FAIRYEAR' ] . " ' " );
while ( $si = mysql_fetch_object ( $q ))
$studentinfoarray [] = $si ;
$topboxtext = " Registration Number: " . $_SESSION [ 'registration_number' ] . " \n " .
" Project Title: $projectinfo->title\n " ;
if ( count ( $studentinfoarray ) > 1 )
$plural = " s " ;
else
$plural = " " ;
$topboxtext .= " Exhibitor $plural : " ;
foreach ( $studentinfoarray AS $studentinfo )
{
$topboxtext .= " $studentinfo->firstname $studentinfo->lastname , " ;
}
//strip off the last comma
2005-01-18 03:33:37 +00:00
$pdf -> heading ( i18n ( " Registration Summary " ));
2004-12-14 14:56:34 +00:00
$topboxtext = substr ( $topboxtext , 0 , - 2 );
//add the newline
2005-01-18 03:33:37 +00:00
// $topboxtext.="\n";
2004-12-14 14:56:34 +00:00
2005-01-18 03:33:37 +00:00
$pdf -> addText ( $topboxtext );
$pdf -> hr ();
$pdf -> heading ( i18n ( " Exhibitor Declaration " ));
2004-12-14 14:56:34 +00:00
2005-01-18 03:33:37 +00:00
$studentbox = " The following section is to be read and signed by the exhibitor $plural . \n \n " .
2004-12-14 15:35:57 +00:00
( $plural ? " We " : " I " ) . " certify that: \n " .
" - The preparation of this project is mainly " . ( $plural ? " our " : " my " ) . " own work \n " .
" - " . ( $plural ? " We " : " I " ) . " have read the rules and regulations and agree to abide by them \n " .
" - " . ( $plural ? " We " : " I " ) . " agree that the decision of the judges will be final \n " ;
2004-12-14 14:56:34 +00:00
2005-01-18 03:33:37 +00:00
$pdf -> addText ( $studentbox );
2004-12-14 14:56:34 +00:00
foreach ( $studentinfoarray AS $studentinfo )
{
2005-01-18 03:33:37 +00:00
$pdf -> vspace ( $height [ 'sigspace' ]);
2004-12-14 14:56:34 +00:00
2005-01-18 03:33:37 +00:00
//signature line
$pdf -> hline ( 1 , 4.5 );
2004-12-14 14:56:34 +00:00
//date line
2005-01-18 03:33:37 +00:00
$pdf -> hline ( 5 , 7 );
//go to next line
$pdf -> nextLine ();
2004-12-14 14:56:34 +00:00
//show their name
2005-01-18 03:33:37 +00:00
$pdf -> addTextX ( i18n ( " %1 %2 (signature) " , array ( $studentinfo -> firstname , $studentinfo -> lastname )), 1.25 );
2004-12-14 14:56:34 +00:00
//show the Date text
2005-01-18 03:33:37 +00:00
$pdf -> addTextX ( i18n ( " Date " ), 5.25 );
2004-12-14 14:56:34 +00:00
2005-01-18 03:33:37 +00:00
//go to next line
$pdf -> nextLine ();
2004-12-14 14:56:34 +00:00
}
2005-01-18 03:33:37 +00:00
$pdf -> hr ();
2004-12-14 14:56:34 +00:00
//now for the parent/guardian signatures
2005-01-18 03:33:37 +00:00
$pdf -> heading ( i18n ( " Parent/Guardian Declaration " ));
2004-12-14 14:56:34 +00:00
2004-12-14 15:35:57 +00:00
$parentbox = " The following is to be read and signed by the exhibitor $plural parent $plural /guardian $plural . \n \n " .
2005-01-05 14:04:10 +00:00
" - As a parent/guardian I certify to the best of my knowledge and believe the information contained in this application is correct, and the project is the work of the student. I also understand that the material used in the project is the responsibility of the student and that neither the school, the teacher, nor the " . $config [ 'fairname' ] . " can be held responsible for loss, damage, or theft, however caused. I further understand that all exhibits entered must be left on display until the end of the Fair. If my son/daughter does not remove the exhibit at the end of the Fair, the " . $config [ 'fairname' ] . " or the owner of the exhibition hall cannot be responsible for the disposal of the exhibit. \n \n " .
2004-12-14 14:56:34 +00:00
" - If my son/daughter is awarded the honour of having his/her exhibit chosen for presentation at the Canada-Wide Science Fair, I consent to having him/her journey to the Fair, and will not hold the Fair responsible for any accident or mishap to the student or the exhibit. \n " ;
2005-01-18 03:33:37 +00:00
$pdf -> addText ( $parentbox );
2004-12-14 14:56:34 +00:00
foreach ( $studentinfoarray AS $studentinfo )
{
2005-01-18 03:33:37 +00:00
$pdf -> vspace ( $height [ 'sigspace' ]);
2004-12-14 14:56:34 +00:00
//signature line
2005-01-18 03:33:37 +00:00
$pdf -> hline ( 1 , 4.5 );
2004-12-14 14:56:34 +00:00
//date line
2005-01-18 03:33:37 +00:00
$pdf -> hline ( 5 , 7 );
$pdf -> nextLine ();
2004-12-14 14:56:34 +00:00
//show their name
2005-01-18 03:33:37 +00:00
$pdf -> addTextX ( i18n ( " Parent/Guardian of %1 %2 (signature) " , array ( $studentinfo -> firstname , $studentinfo -> lastname )), 1.25 );
2004-12-14 14:56:34 +00:00
//show the Date text
2005-01-18 03:33:37 +00:00
$pdf -> addTextX ( i18n ( " Date " ), 5.25 );
$pdf -> nextLine ();
2004-12-14 14:56:34 +00:00
}
2005-01-18 03:33:37 +00:00
/*
header ( " Content-type: application/pdf " );
2004-12-14 14:56:34 +00:00
header ( " Content-disposition: inline; filename=sfiab_sig_ " . $_SESSION [ 'registration_id' ] . " .pdf " );
header ( " Content-length: " . strlen ( $pdfdata ));
2005-01-18 03:33:37 +00:00
*/
echo $pdf -> output ();
2004-12-14 14:56:34 +00:00
?>