forked from ChamodLa/Examgis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_course.php
95 lines (74 loc) · 2.92 KB
/
search_course.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
include 'components/connect.php';
if(isset($_COOKIE['user_id'])){
$user_id = $_COOKIE['user_id'];
}else{
$user_id = '';
header('Location: login.php');
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta properties -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Search Papers - ExamGIS</title>
<!-- Fav-icon -->
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon/favicon-16x16.png">
<link rel="manifest" href="./images/site.webmanifest">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<?php include 'components/user_header.php'; ?>
<!-- courses section starts -->
<section class="courses">
<h1 class="heading">search results</h1>
<div class="box-container">
<?php
if(isset($_POST['search_course']) or isset($_POST['search_course_btn'])){
$search_course = $_POST['search_course'];
$select_courses = $conn->prepare("SELECT * FROM `course` WHERE title LIKE '%{$search_course}%' AND status = ?");
$select_courses->execute(['active']);
if($select_courses->rowCount() > 0){
while($fetch_course = $select_courses->fetch(PDO::FETCH_ASSOC)){
$course_id = $fetch_course['id'];
$select_tutor = $conn->prepare("SELECT * FROM `tutors` WHERE id = ?");
$select_tutor->execute([$fetch_course['tutor_id']]);
$fetch_tutor = $select_tutor->fetch(PDO::FETCH_ASSOC);
?>
<div class="box">
<div class="tutor">
<img src="uploaded_files/tutor_thumb/<?= $fetch_tutor['image']; ?>" alt="">
<div>
<h3><?= $fetch_tutor['name']; ?></h3>
<span><?= $fetch_course['date']; ?></span>
</div>
</div>
<img src="uploaded_files/course_thumb/<?= $fetch_course['thumb']; ?>" class="thumb" alt="">
<h3 class="title"><?= $fetch_course['title']; ?></h3>
<a href="course_desc.php?get_id=<?= $course_id; ?>" class="inline-btn">view papers</a>
</div>
<?php
}
}else{
echo '<p class="empty">No courses are found!</p>';
}
}else{
echo '<p class="empty">Please search something!</p>';
}
?>
</div>
</section>
<!-- courses section ends -->
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>