-
Notifications
You must be signed in to change notification settings - Fork 8
/
lectureaccount.php
56 lines (45 loc) · 1.29 KB
/
lectureaccount.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
<?php
/**
* @System HP-pc Rax
* @author Rakshit shah <Rakshitshah1994@gmail.com>
* @copyright 2015-2017 |Rakshit shah
* @license http://rakshit.in/license/license.php | PHP License 3.0
* @version 1.1
* @since File available since Release 1.0.0
*/
session_start();
include("header.php");
include("conection.php");
echo "lec name".$_SESSION["lecname"];
?>
<section id="page">
<header id="pageheader" class="normalheader">
<h2 class="sitedescription">
</h2>
</header>
<section id="contents">
<article class="post">
<header class="postheader">
<h2>Lectures Menu</h2>
</header>
<section class="entry">
<form action="" method="post" class="form">
<p class="textfield"><a href="course.php">Course</a></p><hr />
<p class="textfield"><a href="subject.php">Subject</a></p><hr />
<p class="textfield"><a href="student.php">Student </a></p><hr />
<p class="textfield"><a href="attendanceview.php">Attendance</a></p><hr />
<p class="textfield"><a href="examview.php">Examination</a></p><hr />
<div class="clear"></div>
</form>
</section>
</article>
<article class="post">
<header class="postheader"></header>
<section class="entry">
<div class="clear"></div>
</section>
</article>
</section>
<?php
include("lecturemenu.php");
include("footer.php"); ?>