|
Server IP : 2a02:4780:3:2287:0:3736:a38e:8 / Your IP : 216.73.217.135 Web Server : LiteSpeed System : Linux sg-nme-web2187.main-hosting.eu 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : system, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/svschool.in/../evisioninfotech.in/public_html/member/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$page_title = 'Institute List';
include 'header.php';
if($userData['user_type'] != "1")
{
echo"<script>alert('Unable to access this page...'); window.location='dashboard.php';</script>";
exit;
}
$agent_id = $userData['id'];
?>
<div class="content-wrapper">
<section class="content mt-4">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<?php include('alert-msg.php'); ?>
<div class="card card-primary">
<div class="card-header">
<h3 class="card-title"><?php echo $page_title; ?></h3>
</div>
<div class="card-body">
<table class="table table-bordered table-striped main_datatables">
<thead>
<tr>
<th>Sr. No.</th>
<th>Name</th>
<th>Username</th>
<th>Password</th>
<th>Created Date</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$sel_school=mysqli_query($con,"select * from users where agent_id = $agent_id and user_type=2 order by id desc");
$i=1;
while($row_school=mysqli_fetch_array($sel_school))
{
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $row_school['name']; ?></td>
<td><?php echo $row_school['username']; ?></td>
<td><?php echo $row_school['password']; ?></td>
<td><?php echo Date('d-m-Y',strtotime($row_school['created_at'])); ?></td>
<td>
<?php
if($row_school['is_active']==1)
{
?>
<a href="institute-status.php?id=<?php echo $row_school['id']; ?>&status=0" class="btn btn-sm btn-primary"><i class="fas fa-times"></i></a>
<?php
}
else
{
?>
<a href="institute-status.php?id=<?php echo $row_school['id']; ?>&status=1" class="btn btn-sm btn-primary"><i class="fas fa-check"></i></a>
<?php
}
?>
<a href="institute-edit.php?id=<?php echo $row_school['id']; ?>" class="btn btn-sm btn-primary"><i class="fas fa-edit"></i></a>
<a href="institute-delete.php?id=<?php echo $row_school['id']; ?>" onclick="return confirm('Are you sure you want to delete ?');" class="btn btn-sm btn-danger"><i class="fas fa-trash"></i></a>
<a href="institute-link-generate.php?id=<?php echo $row_school['id']; ?>" title="Generate Link" class="btn btn-sm btn-info"><i class="fas fa-link"></i></a>
<a href="institute-login.php?id=<?php echo $row_school['id']; ?>" title="Login" class="btn btn-sm btn-info"><i class="fas fa-sign-in-alt"></i></a>
</td>
</tr>
<?php
$i=$i+1;
}
?>
</tbody>
</table>
</div>
<!-- /.card-body -->
</div>
</div>
</div>
</div>
</section>
</div>
<?php include 'footer.php'; ?>