forked from beisong7/career
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcom_details.php
42 lines (37 loc) · 1.17 KB
/
com_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
<?php
$isactive['profile'] = 'cactive';
include_once 'template/com_dash_head.php';
?>
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<b>Company Information</b>
</div>
<div class="panel-body">
<span><b>Company Name</b></span> <br>
<?php echo $user_data['cname']; ?>
<hr>
<span><b>Company Email</b></span> <br>
<?php echo $user_data['email']; ?>
<hr>
<span><b>Company Location</b></span> <br>
<?php echo $user_data['location']; ?>
<hr>
<span><b>Company Address</b></span> <br>
<?php echo $user_data['address']; ?>
<hr>
<span><b>Company Phone</b></span> <br>
<?php echo $user_data['phone']; ?>
<hr>
<span><b>More Information</b></span> <br>
<?php echo $user_data['c_info']; ?>
<hr>
<span><b>Date Joined</b></span> <br>
<?php echo date('F d,Y', $user_data['created_at']); ?>
<hr>
</div>
</div>
</div>
<?php
include_once 'template/com_dash_foot.php';
?>