forked from science-ation/science-ation
106 lines
3.0 KiB
PHP
106 lines
3.0 KiB
PHP
<?php
|
|
/*
|
|
This file is part of the 'Science Fair In A Box' project
|
|
SFIAB Website: http://www.sfiab.ca
|
|
|
|
Copyright (C) 2005 Sci-Tech Ontario Inc <info@scitechontario.org>
|
|
Copyright (C) 2005 James Grant <james@lightbox.org>
|
|
|
|
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.
|
|
*/
|
|
|
|
require_once('common.inc.php');
|
|
require_once('user.inc.php');
|
|
require_once('project.inc.php');
|
|
|
|
$mysqli = sfiab_db_connect();
|
|
sfiab_load_config($mysqli);
|
|
|
|
|
|
$year = array_key_exists('year', $_GET) ? (int)$_GET['year'] : $config['year'];
|
|
|
|
|
|
$q = NULL;
|
|
if(array_key_exists('pn', $_GET)) {
|
|
$pn = $mysqli->real_escape_string(stripslashes($_GET['pn']));
|
|
$q=$mysqli->query("SELECT * FROM projects WHERE number='$pn' AND year='$year'");
|
|
} else if(array_key_exists('p', $_GET)) {
|
|
$floornumber = (int)$_GET['p'];
|
|
$q=$mysqli->query("SELECT * FROM projects WHERE floor_number='$floornumber' AND year='$year'");
|
|
}
|
|
if($q === NULL || $q->num_rows != 1) {
|
|
print("not found");
|
|
exit();
|
|
}
|
|
|
|
$p = project_load($mysqli, -1, $q->fetch_assoc());
|
|
project_load_students($mysqli, $p);
|
|
|
|
$s_names = "";
|
|
$s_schools = "";
|
|
|
|
$school_ids = array();
|
|
|
|
foreach($p['students'] as &$s) {
|
|
if($s_names != '') $s_names .= ', ';
|
|
$s_names .= $s['name'];
|
|
|
|
|
|
if(!in_array($s['schools_id'], $school_ids)) {
|
|
$school_ids[] = $s['schools_id'];
|
|
|
|
if($s_schools != '') $s_schools .= ', ';
|
|
$q2 = $mysqli->query("SELECT school from schools WHERE id='{$s['schools_id']}' and year='$year'");
|
|
|
|
$r2 = $q2->fetch_assoc();
|
|
$s_schools .= $r2['school'];
|
|
}
|
|
}
|
|
|
|
if(file_exists("data/logo-100.gif"))
|
|
$logo = "<img align=\"left\" height=\"50\" src=\"file.php?f=logo\">";
|
|
else
|
|
$logo = "";
|
|
|
|
/* Create flags for htmlentities */
|
|
$flags = ENT_QUOTES;
|
|
if(PHP_VERSION_ID >= 50400) $flags |= ENT_HTML401;
|
|
|
|
|
|
?>
|
|
<html><head>
|
|
<title>Project Summary for <?=$p['number']?></title>
|
|
</head>
|
|
<body bgcolor="#FFFFFF">
|
|
<P>
|
|
<center>
|
|
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" col="3">
|
|
<TR>
|
|
<td><?=$logo?></td>
|
|
<td><center><p><strong><font size="3" face="Verdana, Arial, Helvetica, sans-serif" color="#6699CC">
|
|
<?=htmlentities($p['title'], $flags , "UTF-8")?><br />
|
|
<?=htmlentities($s_names, $flags , "UTF-8")?><br />
|
|
<?=htmlentities($s_schools, $flags , "UTF-8")?><br />
|
|
Floor Location : <?=$p['number']?></font></strong></center></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</center>
|
|
<font size="2" face="Verdana, Arial, Helvetica, sans-serif">
|
|
<?=nl2br(htmlentities($p['abstract'], $flags , "UTF-8"))?>
|
|
</font>
|
|
|
|
</body></html>
|