-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuploadForm.php
More file actions
138 lines (111 loc) · 3.1 KB
/
uploadForm.php
File metadata and controls
138 lines (111 loc) · 3.1 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
session_start();
include('connect.php');
?>
<!DOCTYPE html>
<html>
<head>
<title>Upload Course</title>
<style>
body {
background: linear-gradient(135deg, #71b7e6, #9b59b6);
}
.container {
max-width: 500px;
margin: 50px auto;
padding: 20px;
background-color: #ffffff;
border-radius: 5px;
}
h1 {
text-align: center;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"],
textarea {
width: 100%;
padding: 8px;
border-radius: 3px;
border: 1px solid #ccc;
}
#btnn {
display: block;
width: 100%;
padding: 10px;
background-color: skyblue;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
border: 2px solid black;
transition: 0.8s;
}
#btnn:hover {
background-color: #1e41db;
}
input[type="file"] {
display: inline;
margin-bottom: 10px;
}
input[type="submit"] {
display: inline;
border: none;
padding: 5px;
background-color: #4c82af;
color: #fff;
text-align: center;
font-size: 16px;
font-weight: bold;
cursor: pointer;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Upload Material</h1>
<form action="uploadForm.php" method="post">
<label for="years">Course Name: <?php echo $_SESSION['cName']; ?></label>
<label for="qualifications">Course ID: <?php echo $_SESSION['courseID']; ?></label>
<label for="specialization">Material Type </label>
<select name="mat" required>
<option disabled selected>Select</option>
<option>lecture</option>
<option>assignment</option>
</select>
<label for="specialization">Material Number </label>
<input type="number" id="specialization" name="num" required />
<label for="specialization">Lecture Name</label>
<input type="text" id="specialization" name="nem" required />
<input type="submit" id="btnn" name="submit11" value="Proceed to upload" />
</form>
</div>
<?php
if(isset($_POST['submit11'])){
$lec = $_POST['num'];
$_SESSION['nem'] = $_POST['nem'];
$_SESSION['lecture'] = $_POST['num'];
$course = $_SESSION['courseID'];
$_SESSION['type'] = $_POST['mat'];
$sql = "SELECT lecture FROM course WHERE lecture = $lec AND C_ID = $course";
$result = mysqli_query($conn , $sql);
$count = mysqli_num_rows($result);
if($count!=0)
{
?>
<script>
alert("Lecture Number already exists");
</script>
<?php
}
else if ($count==0)
{
echo "<script>window.location.href='upload.php'</script>";
}
}
?>
</body>
</html>