Courses.php: better code spacing (3)
							parent
							
								
									1cac6bebea
								
							
						
					
					
						commit
						54d1d5ee97
					
				
							
								
								
									
										76
									
								
								Courses.php
								
								
								
								
							
							
						
						
									
										76
									
								
								Courses.php
								
								
								
								
							|  | @ -516,51 +516,47 @@ include 'Header.php'; | |||
| 		    $faculty = mysqli_real_escape_string($con, $_GET["faculty"]); | ||||
| 
 | ||||
| 		    // the user has not entered something under "Find course by Code"
 | ||||
| 		    if($search != "" && $faculty == "") | ||||
| 		    { | ||||
| 		    if ($search != "") { | ||||
|                 echo "<h4>Search results for course code: $search </h4><hr>"; | ||||
|                 $result = mysqli_query($con,"SELECT `Course_ID`, `Course_Name`, `Academic_Year`, `Faculty`," | ||||
| 						  . " `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members`  " | ||||
| 						  . " , users_table.Full_Name  FROM `courses_table` INNER JOIN users_table" | ||||
| 						  . " ON users_table.User_ID=courses_table.Lecturer_User_ID where Academic_Year >= $oldest_academic_year and Course_Code like '%{$search}%'  and courses_table.Course_ID not in (select course_id from course_students_table where Student_ID=$student_id) order by Academic_Year desc"); | ||||
| 		    } | ||||
| 		    // the user has entered something under "Find course by Code"
 | ||||
| 		    else if ($faculty != "") | ||||
| 		    { | ||||
| 			echo "<h3> Find courses under faculty: $faculty</h3>"; | ||||
| 			$result = mysqli_query($con,"SELECT `Course_ID`, `Course_Name`, `Academic_Year`, `Faculty`,
 | ||||
|        `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members` | ||||
|          , users_table.Full_Name  FROM `courses_table` INNER JOIN users_table | ||||
|          ON users_table.User_ID=courses_table.Lecturer_User_ID where Academic_Year >= $oldest_academic_year  and Faculty='$faculty'  and courses_table.Course_ID not in (select course_id from course_students_table where Student_ID=$student_id) order by Academic_Year desc");
 | ||||
|                 $result = mysqli_query($con, "SELECT Course_ID, Course_Name, Academic_Year, Faculty, Lecturer_User_ID, TA_User_ID, Course_Code, URL, Verify_New_Members, users_table.Full_Name
 | ||||
|                                               FROM courses_table | ||||
|                                               INNER JOIN users_table | ||||
| 						                      ON users_table.User_ID=courses_table.Lecturer_User_ID | ||||
|                                               WHERE Academic_Year >= $oldest_academic_year AND Course_Code LIKE '%{$search}%' AND courses_table.Course_ID NOT IN | ||||
|                                                     (SELECT course_id FROM course_students_table WHERE Student_ID=$student_id) ORDER BY Academic_Year DESC");
 | ||||
| 		    } else if ($faculty != "") { // the user has entered something under "Find course by Code"
 | ||||
|                 echo "<h3> Find courses under faculty: $faculty</h3>"; | ||||
|                 $result = mysqli_query($con, "SELECT Course_ID, Course_Name, Academic_Year, Faculty, Lecturer_User_ID, TA_User_ID, Course_Code, URL, Verify_New_Members, users_table.Full_Name
 | ||||
|                                               FROM courses_table | ||||
|                                               INNER JOIN users_table ON users_table.User_ID=courses_table.Lecturer_User_ID | ||||
|                                               WHERE Academic_Year >= $oldest_academic_year AND Faculty='$faculty' AND courses_table.Course_ID NOT IN | ||||
|                                                     (SELECT course_id FROM course_students_table WHERE Student_ID=$student_id) ORDER BY Academic_Year DESC");
 | ||||
| 		    } | ||||
| 
 | ||||
| 
 | ||||
| 		    if(mysqli_num_rows($result)==0) | ||||
| 		    { | ||||
| 			echo "No results. <hr>"; | ||||
| 
 | ||||
| 		    if (mysqli_num_rows($result) == 0) { | ||||
|                 echo "No results. <hr>"; | ||||
| 		    } else { | ||||
|                 while($row = mysqli_fetch_assoc($result)) { | ||||
|                     $name = $row['Course_Name']; | ||||
|                     $code = $row['Course_Code']; | ||||
|                     $faculty = $row['Faculty']; | ||||
|                     $lecturer = $row['Full_Name']; | ||||
|                     $academic = $row['Academic_Year']; | ||||
|                     $url = $row['URL']; | ||||
|                     $id = $row['Course_ID']; | ||||
|                     $v = $row['Verify_New_Members']; | ||||
|                     if($v > 0) { | ||||
|                         $msg = "<i class='fa fa-exclamation-circle'></i> Lecturer verification required"; | ||||
|                         $msg2 = "Send Joining Request"; | ||||
|                     } | ||||
| 
 | ||||
| 			while($row = mysqli_fetch_assoc($result)) { | ||||
| 			    $name=$row['Course_Name']; | ||||
| 			    $code=$row['Course_Code']; | ||||
| 			    $faculty=$row['Faculty']; | ||||
| 			    $lecturer=$row['Full_Name']; | ||||
| 			    $academic=$row['Academic_Year']; | ||||
| 			    $url=$row['URL']; | ||||
| 			    $id=$row['Course_ID']; | ||||
| 			    $v=$row['Verify_New_Members']; | ||||
| 			    if($v>0) | ||||
| 			    { | ||||
| 				$msg="<i class='fa fa-exclamation-circle'></i> Lecturer verification required"; | ||||
| 				$msg2="Send Joining Request"; | ||||
| 			    } | ||||
| 
 | ||||
| 			    echo "<div class='btn btn-default' style='word-wrap:break-word'>
 | ||||
|   ($code) $name <br>($url) <br>  <a href='~\..\Script.php?JoinCourse=y&id=$id&std=$student_id&joining=$v' class='btn btn-sm btn-success' onclick=return confirm(\"Are you sure to join this course?\")' >Join</a>
 | ||||
|    <br> <span style='font-size:10pt'>Faculty: $faculty   Year: $academic   Lecturer: $lecturer </span><br>$msg</div> | ||||
|                             ";
 | ||||
| 			} | ||||
|                     echo "<div class='btn btn-default' style='word-wrap:break-word'>
 | ||||
|                               ($code) $name <br>($url) <br> | ||||
|                               <a href='~\..\Script.php?JoinCourse=y&id=$id&std=$student_id&joining=$v' class='btn btn-sm btn-success' onclick=return confirm(\"Are you sure to join this course?\")' >Join</a> <br>
 | ||||
|                               <span style='font-size:10pt'>Faculty: $faculty   Year: $academic   Lecturer: $lecturer </span><br> | ||||
|                               $msg | ||||
|                          </div>";
 | ||||
|                 } | ||||
| 		    } | ||||
| 		} | ||||
| 		// Otherwise, list the student's joined courses (already done), in reverse chronological order
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue