GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Course/ |
Upload File : |
<? // Course/Assignments_StudentProfile.phpinc // Displays Student Profile assignment and grade. $totalPoints += $studentProfilePoints; if ( $f_userId ) { // Student Profile. $query = " SELECT * FROM studentprofile WHERE userId = ".$f_userId." "; $studentprofileResult = query_do($query); $studentprofileCount = $_SESSION['qry']['count']; if ($studentprofileCount) { $studentprofileRow = mysqli_fetch_assoc($studentprofileResult); $studentprofielExists = true; $studentprofileSubmitted = $studentprofileRow['studentprofileSubmitted']; if ($studentprofileRow['studentprofileGraded']) { $studentprofileGrade = (integer) ( $studentprofileRow['studentprofileGrade'] * $studentProfilePoints / 100 + .5 ); $gradePoints += $studentprofileGrade; } else { $studentprofileGrade = 'ng'; } } else { $studentprofielExists = false; $studentprofileSubmitted = false; $studentprofileGrade = ''; } } else { $studentprofielExists = false; $studentprofileSubmitted = false; $studentprofileGrade = ''; } ?> <tr> <td class="right"><?=$evaluationNumber?>.</td> <td><a href="./?StudentProfile">Student Profile</a></td> <? if ($studentprofielExists) { if ($studentprofileSubmitted) { ?> <td>Submitted.</td><td class="right"><?=$studentprofileGrade?></td><td class="right"><?=$studentProfilePoints?></td> <? } else { ?> <td>Begun but not submitted.</td><td class="right">0</td><td class="right"><?=$studentProfilePoints?></td> <? } } else { ?> <td>Not submitted.</td><td></td> <? } ?> </tr> <? $evaluationNumber++; ?>