forked from science-ation/science-ation
Take website first/last name concent into account for the app as well
This commit is contained in:
parent
8d9790e488
commit
6e4ea2b912
@ -60,13 +60,21 @@
|
||||
|
||||
$regid=$r['reg_id'];
|
||||
|
||||
$q2=mysql_query("SELECT firstname,lastname,schools.school FROM students JOIN schools ON students.schools_id=schools.id WHERE registrations_id='$regid' ORDER BY lastname");
|
||||
$q2=mysql_query("SELECT firstname,lastname,webfirst,weblast,schools.school FROM students JOIN schools ON students.schools_id=schools.id WHERE registrations_id='$regid' ORDER BY lastname");
|
||||
$students="";
|
||||
while($stud=mysql_fetch_object($q2)) {
|
||||
$students.=trim($stud->firstname)." ".trim($stud->lastname).", ";
|
||||
|
||||
if($stud->webfirst=="yes")
|
||||
$students.="$stud->firstname ";
|
||||
if($stud->weblast=="yes")
|
||||
$students.="$stud->lastname ";
|
||||
if($stud->webfirst=="yes" || $stud->weblast=="yes")
|
||||
$students.=", ";
|
||||
|
||||
//we just use the last school, it should match
|
||||
$school=$stud->school;
|
||||
}
|
||||
if(strlen($students))
|
||||
$students=substr($students,0,-2);
|
||||
|
||||
$ret=array();
|
||||
|
Loading…
x
Reference in New Issue
Block a user