-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathothersProfile.php
175 lines (129 loc) · 5.08 KB
/
othersProfile.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
require_once 'core/init.php';
?>
<?php
session_start();
$_SESSION["header_image"] = "profilebg.jpg";
$_SESSION["header_title"] = "Profile";
$nnn=$_SESSION['user_name_session'];
$_SESSION["header_subtitle"] = $nnn;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>MCA16 - Profile</title>
<link rel="icon" href="icon/favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/clean-blog.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php
//Navigation bar
require_once 'core/navbar.php';
?>
<?php
//header
//require_once 'core/header.php';
$profile_id=(int)$_GET['profile_no'];
if ($profile_id == $_SESSION['user_id_session']) {
?><meta http-equiv="refresh" content="0;URL='profile.php'" /> <?php
}
?>
<?php
$query_user_profile = $db->query("SELECT * FROM tbl_users WHERE user_id=".$profile_id);
$userRow_profile=$query_user_profile->fetch_array();
?>
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="intro-header" style="background-image: url('img/<?php echo $_SESSION["header_image"]; ?>')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1><?php //echo $_SESSION["header_title"]; ?>
</h1>
<img class="img-responsive img-thumbnail " src="<?php echo $userRow_profile['user_image'];?>" alt="Profile Picture" width=30% data-toggle="modal" data-target="#myModalProfilePicture">
<!--<hr class="small"> -->
<span class="subheading"><?php echo $userRow_profile['username'];?></span>
</div>
</div>
</div>
</div>
</header>
<!-- Modal profile pic view -->
<div id="myModalProfilePicture" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<img class="img-responsive " src="<?php echo $userRow_profile['user_image'];?>" alt="Profile Picture" width=100% >
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="panel panel-default post">
<div class="panel-body">
<br>
<div >
<p>Name: <?php echo $userRow_profile['username'];?>
</p>
</div>
<br><hr><br>
<div >
<p>Email: <?php echo $userRow_profile['email'];?>
</p>
</div>
<br>
<hr>
<br>
<div >
<p>Status: <?php echo $userRow_profile['user_status'];?>
</p>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
<hr>
<?php
//footer
require_once 'core/footer.php';
?>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/clean-blog.min.js"></script>
</body>
</html>