forked from science-ation/science-ation
Update on the winners.php to work with the new user system
This commit is contained in:
parent
2811eef8d2
commit
0e188391d8
29
winners.php
29
winners.php
@ -162,19 +162,19 @@ if($_GET['conferences_id'] && $_GET['type']) {
|
|||||||
echo "  ";
|
echo "  ";
|
||||||
echo "($pr->projectnumber) $pr->title";
|
echo "($pr->projectnumber) $pr->title";
|
||||||
|
|
||||||
$sq=mysql_query("SELECT students.firstname,
|
$sq=mysql_query("SELECT users.firstname,
|
||||||
students.lastname,
|
users.lastname,
|
||||||
students.schools_id,
|
users.schools_id,
|
||||||
students.webfirst,
|
users.webfirst,
|
||||||
students.weblast,
|
users.weblast,
|
||||||
students.webphoto,
|
users.webphoto,
|
||||||
schools.school
|
schools.school
|
||||||
FROM
|
FROM
|
||||||
students,
|
users,
|
||||||
schools
|
schools
|
||||||
WHERE
|
WHERE
|
||||||
students.registrations_id='$pr->reg_id'
|
users.registrations_id='$pr->reg_id'
|
||||||
AND students.schools_id=schools.id
|
AND users.schools_id=schools.id
|
||||||
");
|
");
|
||||||
|
|
||||||
$studnum=0;
|
$studnum=0;
|
||||||
@ -236,12 +236,15 @@ else
|
|||||||
{
|
{
|
||||||
$q=mysql_query("SELECT
|
$q=mysql_query("SELECT
|
||||||
DISTINCT(winners.conferences_id) AS conferences_id,
|
DISTINCT(winners.conferences_id) AS conferences_id,
|
||||||
dates.date
|
dates.date,
|
||||||
|
conferences.name AS conferencename
|
||||||
FROM
|
FROM
|
||||||
winners,
|
winners,
|
||||||
dates
|
dates,
|
||||||
|
conferences
|
||||||
WHERE
|
WHERE
|
||||||
winners.conferences_id=dates.conferences_id
|
winners.conferences_id=dates.conferences_id
|
||||||
|
AND winners.conferences_id=conferences.id
|
||||||
AND dates.name='postwinners'
|
AND dates.name='postwinners'
|
||||||
AND dates.date<=NOW()
|
AND dates.date<=NOW()
|
||||||
ORDER BY
|
ORDER BY
|
||||||
@ -258,7 +261,7 @@ else
|
|||||||
$first=false;
|
$first=false;
|
||||||
}
|
}
|
||||||
//get the "winnersposted" date for the conference, and make
|
//get the "winnersposted" date for the conference, and make
|
||||||
echo "<h2>".i18n("%1 Winners",array($r->conferences_id))."</h2>";
|
echo "<h2>".i18n("%1 Winners",array($r->conferencename))."</h2>";
|
||||||
|
|
||||||
//do this each time, because for each conference the names of the award types could change, along with what is actually given out.
|
//do this each time, because for each conference the names of the award types could change, along with what is actually given out.
|
||||||
$tq=mysql_query("SELECT
|
$tq=mysql_query("SELECT
|
||||||
@ -278,7 +281,7 @@ else
|
|||||||
");
|
");
|
||||||
echo mysql_error();
|
echo mysql_error();
|
||||||
while($tr=mysql_fetch_object($tq)) {
|
while($tr=mysql_fetch_object($tq)) {
|
||||||
echo " <a href=\"winners.php?conferences_id=$r->conferences_id&type=$tr->type\">".i18n("%1 %2 award winners",array($r->conferences_id,$tr->type))."</a><br />";
|
echo " <a href=\"winners.php?conferences_id=$r->conferences_id&type=$tr->type\">".i18n("%1 %2 award winners",array($r->conferencename,$tr->type))."</a><br />";
|
||||||
}
|
}
|
||||||
echo "<br />";
|
echo "<br />";
|
||||||
$first=false;
|
$first=false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user