-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudenteventheadpage.php
32 lines (32 loc) · 1.05 KB
/
studenteventheadpage.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
<?php
session_start();
if(!isset($_SESSION['user']))
{
header("Location: index.php");
}
include 'header.php';
include 'validation.php';
include 'studentsidenavbar.php';
?>
<div class="col-sm-9">
<div class="main" id="logindiv">
<center>
<h1>Check Participation As...</h1>
<div class="login-form" >
<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="regcat" required>
<option value="category" disabled="disabled" selected="selected" >Category</option>
<option value="studenteventheadtablepaid.php">Paid Participating Student</option>
<option value="studenteventheadtablenotpaid.php">Unpaid Participating Students</option>
</select>
</td>
</tr>
</table>
</div>
</center>
</div>
</div>
</div>
<?php include 'footer.php';?>