Take website first/last name concent into account for the app as well

This commit is contained in:
james 2011-03-27 17:08:18 +00:00
parent 8d9790e488
commit 6e4ea2b912

View File

@ -60,14 +60,22 @@
$regid=$r['reg_id']; $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=""; $students="";
while($stud=mysql_fetch_object($q2)) { 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 //we just use the last school, it should match
$school=$stud->school; $school=$stud->school;
} }
$students=substr($students,0,-2); if(strlen($students))
$students=substr($students,0,-2);
$ret=array(); $ret=array();
foreach($r AS $k=>$v) { foreach($r AS $k=>$v) {