-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathst_profile.php
74 lines (72 loc) · 1.96 KB
/
st_profile.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
<?php
session_start();
require "php/config.php";
require_once "php/functions.php";
$user = new login_registration_class();
$sid = $_SESSION['sid'];
$sname = $_SESSION['sname'];
if(!$user->getsession()){
header('Location: st_login.php');
exit();
}
?>
<?php
$pageTitle = "Student Profile";
include "php/headertop.php";
?>
<div class="profile">
<p style="font-size:18px;text-align:center;background:#1abc9c;color:#fff;padding:10px;margin:0">Welcome : <?php $user->getusername($sid); ?> <i class="fa fa-check-circle" aria-hidden="true"></i></p>
<table class="tab_one">
<?php
$getuser = $user->getuserbyid($sid);
while($row = $getuser->fetch_assoc()){
?>
<tr>
<td></td>
<?php if(empty($row['img'])){?>
<td><img src="img/default.png" style="height:180px; width:180px; border:1px #1ABC9C solid;border-radius:90px" alt="" /></td>
<?php }else{ ?>
<td><img src="img/student/<?php echo $row['img']; ?>" style="height:180px; width:180px; border:1px #1ABC9C solid;border-radius:90px" alt="" /></td>
<?php }?>
</tr>
<tr >
<td>Student ID: </td>
<td><?php echo $row['st_id']; ?></td>
</tr>
<tr>
<td>Name: </td>
<td><?php echo $row['name']; ?></td>
</tr>
<tr>
<td>E-mail: </td>
<td><?php echo $row['email']; ?></td>
</tr>
<tr>
<td>Birthday: </td>
<td><?php echo $row['bday']; ?></td>
</tr>
<tr>
<td>Program: </td>
<td><?php echo $row['program']; ?></td>
</tr>
<tr>
<td>Contact: </td>
<td><?php echo $row['contact']; ?></td>
</tr>
<tr>
<td>Gender: </td>
<td><?php echo $row['gender']; ?></td>
</tr>
<tr>
<td>Address: </td>
<td><?php echo $row['address']; ?></td>
</tr>
<?php if($row['st_id'] == $sid){ ?>
<tr>
<td>Update Profile: </td>
<td><a href="st_update.php?id=<?php echo $row['st_id'];?>"><button class="editbtn">Edit Profile</button></a></td>
</tr>
<?php } } ?>
</table>
</div>
<?php include "php/footerbottom.php";?>