-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathactivitycheckpart.php
37 lines (37 loc) · 1.3 KB
/
activitycheckpart.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
<?php
session_start();
include_once 'dbconnect.php';
if(!isset($_SESSION['user']))
{
header("Location: index.php");
}
include 'header.php';
include 'validation.php';
include 'teachersidenavbar.php';
?>
<div class="col-sm-9">
<div class="main" id="logindiv">
<center>
<h1>Check Participation As...</h1>
<div class="login-form" >
<form method="get">
<table align="center" width="40%" border="0" class="loggedin">
<tr>
<td>
<select onchange="this.options[this.selectedIndex].value && (window.location =this.options[this.selectedIndex].value);" class="logincat" name="aptype" required>
<option value="category" disabled="disabled" selected="selected" >Activity Type</option>
<option value="checkactnamepart.php?type=workshop">Workshop</option>
<option value="checkactnamepart.php?type=seminar">Seminar</option>
<option value="checkactnamepart.php?type=presentation">Presentation</option>
<option value="checkactnamepart.php?type=competition">Competition</option>
</select>
</td>
</tr>
</table>
</form>
</div>
</center>
</div>
</div>
</div>
<?php include 'footer.php';?>