-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (29 loc) · 748 Bytes
/
index.php
File metadata and controls
45 lines (29 loc) · 748 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SRMMUN</title>
<link rel="stylesheet" type="text/css" href="_styles/style.css" />
<script src="_scripts/jquery.js" />
<script src="_scripts/loader.js" />
</head>
<body>
<!-- Header Start -->
<?php include_once 'header.php'; ?>
<!-- Header Ends -->
<!-- Page Starts -->
<?php
$url = "home";
if($_GET['page'])
{
$url = $_GET['page'];
}
$url = $url.".php";
include_once $url
?>
<!-- Page Ends -->
<!-- Footer Starts -->
<?php include_once 'footer.php'; ?>
<!-- Footer Ends -->
</body>
</html>