-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_details.php
48 lines (43 loc) · 1.39 KB
/
user_details.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
<?php
if(!isset($SESSION)){
session_start();
}
if(isset($_GET['profiles'])){
$username=$_GET['profiles'];
}
include "includes/dbconnect.inc.php";
?>
<html>
<head>
<link rel="shortcut icon" href="themes/ammslogo.png" />
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="bootstrap-3.3.6/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/linksHoveringEffects.css" />
<link rel="stylesheet" href="css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="css/dataTables.bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/buttons.bootstrap.min.css">
<script type="text/javascript" src="js/jquery-1.11.2.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/jquery.dataTables.min.js"></script>
<title>AMMS|User Registration</title>
</head>
<body>
<div class="parent">
<?php include "includes/header.php";?>
<center>
<div class="wrapper">
<div class="userpanel" style="margin-top:10px;">
<?php
include "includes/meteorologydata.php";
if($_SESSION['amms_user_role']=='admin'){
include "includes/user_panel.php";
}
?>
</div>
<?php include "includes/details.php";?>
</div>
</center>
</div>
</body>
</html>
<?php include "includes/footer.php";?>