Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 22, 2020 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/228adf51d8bc53e429569911b3042494 to your computer and use it in GitHub Desktop.
Save parzibyte/228adf51d8bc53e429569911b3042494 to your computer and use it in GitHub Desktop.
<?php
include_once "header.php";
include_once "nav.php";
include_once "functions.php";
$employees = getEmployees();
?>
<div class="row">
<div class="col-12">
<h1 class="text-center">Employees</h1>
</div>
<div class="col-12">
<a href="employee_add.php" class="btn btn-info mb-2">Add new employee <i class="fa fa-plus"></i></a>
</div>
<div class="col-12">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<?php foreach ($employees as $employee) { ?>
<tr>
<td>
<?php echo $employee->id ?>
</td>
<td>
<?php echo $employee->name ?>
</td>
<td>
<a class="btn btn-warning" href="employee_edit.php?id=<?php echo $employee->id ?>">
Edit <i class="fa fa-edit"></i>
</a>
</td>
<td>
<a class="btn btn-danger" href="employee_delete.php?id=<?php echo $employee->id ?>">
Delete <i class="fa fa-trash"></i>
</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php
include_once "footer.php";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment