2011-03-17 18:44:53 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the Science - ation project
* Science - ation Website : https :// science - ation . ca
*
* This file was part of the 'Science Fair In A Box' project
*
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation , version 2.
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2011-03-17 18:44:53 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
2011-03-17 18:44:53 +00:00
2025-01-29 03:30:48 +00:00
global $pdo ;
2025-01-28 17:33:03 -05:00
2025-01-29 03:30:48 +00:00
// first, lets make sure someone isng tryint to see something that they arent allowed to!
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT (NOW()>=?) AS test " );
$q -> execute ([ $config [ 'dates' ][ 'postparticipants' ]]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
2011-03-17 18:44:53 +00:00
2025-01-29 03:30:48 +00:00
$pn = trim ( $_GET [ 'n' ]);
2011-03-17 18:44:53 +00:00
2025-01-29 03:30:48 +00:00
if ( $r -> test ) {
$q = $pdo -> prepare ( " SELECT
2011-03-17 18:44:53 +00:00
registrations . id AS reg_id ,
registrations . status ,
projects . title ,
projects . summary ,
projects . projectnumber ,
projects . projectcategories_id ,
projects . projectdivisions_id ,
projectcategories . category ,
projectdivisions . division
FROM
registrations
LEFT JOIN projects on projects . registrations_id = registrations . id
LEFT JOIN projectcategories ON projectcategories . id = projects . projectcategories_id
LEFT JOIN projectdivisions ON projectdivisions . id = projects . projectdivisions_id
WHERE
2025-02-09 17:24:37 +00:00
registrations . year = ?
AND projectcategories . year = ?
AND projectdivisions . year = ?
2011-03-17 18:44:53 +00:00
AND ( status = 'complete' OR status = 'paymentpending' )
2025-02-09 17:24:37 +00:00
AND projects . projectnumber = ?
2011-03-17 18:44:53 +00:00
LIMIT 1
" );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $config [ 'FAIRYEAR' ], $config [ 'FAIRYEAR' ], $config [ 'FAIRYEAR' ], $pn ]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
$r = $q -> fetch ( PDO :: FETCH_ASSOC );
2011-03-17 18:44:53 +00:00
2025-01-29 03:30:48 +00:00
$regid = $r [ 'reg_id' ];
2011-03-17 18:44:53 +00:00
2025-02-09 17:24:37 +00:00
$q2 = $pdo -> prepare ( " SELECT firstname,lastname,webfirst,weblast,schools.school FROM students JOIN schools ON students.schools_id=schools.id WHERE registrations_id=? ORDER BY lastname " );
$q2 -> execute ([ $regid ]);
2025-01-29 03:30:48 +00:00
$students = '' ;
while ( $stud = $q2 -> fetch ( PDO :: FETCH_OBJ )) {
if ( $stud -> webfirst == 'yes' )
$students .= " $stud->firstname " ;
if ( $stud -> weblast == 'yes' )
$students .= " $stud->lastname " ;
if ( $stud -> webfirst == 'yes' || $stud -> weblast == 'yes' )
$students .= ', ' ;
2011-03-27 17:08:18 +00:00
2025-01-29 03:30:48 +00:00
// we just use the last school, it should match
$school = $stud -> school ;
}
if ( strlen ( $students ))
$students = substr ( $students , 0 , - 2 );
2011-03-27 17:08:18 +00:00
2025-01-29 03:30:48 +00:00
$ret = array ();
foreach ( $r AS $k => $v ) {
$ret [ $k ] = iconv ( 'ISO-8859-1' , 'UTF-8//TRANSLIT' , trim ( $v ));
2011-03-17 18:44:53 +00:00
}
2025-01-29 03:30:48 +00:00
$ret [ 'students' ] = iconv ( 'ISO-8859-1' , 'UTF-8//TRANSLIT' , trim ( $students ));
$ret [ 'school' ] = iconv ( 'ISO-8859-1' , 'UTF-8//TRANSLIT' , trim ( $school ));
$ret [ 'photo' ] = '' ;
}
// simulate slow loading
2011-03-17 18:44:53 +00:00
// usleep(2000000);
2025-01-29 03:30:48 +00:00
echo json_encode ( $ret );
2011-03-17 18:44:53 +00:00
?>