![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/gositeme.com/public_html/quickqr/admin/panel/ |
<?php
require_once('../datatable-json/includes.php');
$fetchuser = ORM::for_table($config['db']['pre'].'user')->find_one($_GET['id']);
if(!isset($_GET['id']))
{
echo 'Error : 404 Page not found';
}
$fetchusername = $fetchuser['username'];
$fetchuserpic = $fetchuser['image'];
if($fetchuserpic == "")
$fetchuserpic = "default_user.png";
?>
<style>
.app-contacts *{
box-sizing: border-box;
}
</style>
<div class="app-contacts">
<header class="slidePanel-header overlay">
<div class="overlay-panel overlay-background vertical-align">
<div class="vertical-align-middle">
<a class="avatar" href="#" id="emp_img_uploader">
<img src="../storage/profile/<?php echo $fetchuserpic;?>" alt="" style="min-height: 100px; min-width: 100px">
</a>
<h3 class="name"><?php echo $fetchuser['name']; ?></h3>
<div class="tags">
<?php echo $fetchuser['email'];?>
</div>
</div>
</div>
</header>
<div class="slidePanel-actions">
<div class="btn-group-flat">
<button type="button" class="btn btn-pure btn-inverse slidePanel-close icon ion-android-close font-size-20" aria-hidden="true"></button>
</div>
</div>
<div class="slidePanel-inner">
<div class="user-btm-box">
<!-- .row -->
<div class="row text-center m-t-10">
<div class="col-md-6 b-r"><strong>Name</strong><p><?php echo $fetchuser['name'];?></p></div>
<div class="col-md-6"><strong>Gender</strong><p><?php echo $fetchuser['sex'];?></p></div>
</div>
<!-- /.row -->
<hr>
<!-- .row -->
<div class="row text-center m-t-10">
<div class="col-md-6 b-r"><strong>Country</strong><p><?php echo $fetchuser['country'];?></p></div>
<div class="col-md-6"><strong>Joined</strong><p><?php echo date('d M, Y g:iA', strtotime($fetchuser['created_at'])); ?></p></div>
</div>
<!-- /.row -->
<hr>
<!-- .row -->
<div class="row text-center m-t-10">
<div class="col-md-12"><strong>About</strong><p class="m-t-30"><?php echo $fetchuser['description'];?></p></div>
</div>
</div>
</div>
</div>