-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathedit-profile.php
More file actions
20 lines (20 loc) · 801 Bytes
/
edit-profile.php
File metadata and controls
20 lines (20 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php include 'components/authentication.php' ?>
<?php include 'components/session-check.php' ?>
<?php include 'controllers/base/head.php' ?>
<?php include 'controllers/navigation/first-navigation.php' ?>
<div class="container">
<div class="no-gutter row">
<div class="col-md-12">
<div class="panel panel-default" id="sidebar">
<div class="panel-body">
<?php
$sql = "SELECT * FROM user where user_username='$user_username'";
$result = mysqli_query($database,$sql) or die(mysqli_error($database));
$rws = mysqli_fetch_array($result);
?>
<?php include 'controllers/form/edit-profile-form.php' ?>
</div>
</div>
</div>
</div>
</div>