Added Client Name to the top of Client Side Nav Thank You @aftechro

This commit is contained in:
johnny@pittpc.com 2021-08-07 22:17:43 -04:00
parent 835f3fbe52
commit eef4c65057
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,8 @@
<li class="nav-item">
<a href="clients.php" class="nav-link">
<i class="nav-icon fas fa-arrow-left"></i>
<p>Back</p>
<p>Back</p> |
<p><strong><?php echo $client_name; ?></strong></p>
</a>
</li>
<li class="nav-header mt-3">CLIENT</li>

View File

@ -222,7 +222,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
<div class="dropdown-menu">
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editClientModal<?php echo $client_id; ?>">Edit</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#deleteClientModal<?php echo $client_id; ?>">Delete</a>
<a class="dropdown-item text-danger" href="#" data-toggle="modal" data-target="#deleteClientModal<?php echo $client_id; ?>">Delete</a>
</div>
</div>
</td>