. */ require_once(__DIR__ . '/../index.php'); require_once(__DIR__ . '/../login.php'); require('./header.php'); ?>
View information of the client with id // ?delete= Delete the client with id //------------------------------------------------------------------------------ // The header of the page $header = 'Clients'; // Whether or not to show an individual client in the end (false if not, or the id if yes) $show_individual = false; // View client if (isset($_GET['id'])) { $id = (int) $_GET['id']; try { $client = new Client($_pdo, $id); $header = "Clients / {$client->name}"; $show_individual = $id; } catch (PDOException $e) { $alert = "
The client with id $id could not be found.
"; } catch (Exception $e) { $alert = "
The client with id $id could not be found.
"; } } // Show the header echo "

$header

"; if (isset($alert)) echo "
$alert
"; // Delete client if (isset($_GET['delete'])) { echo "
"; $id = (int) $_GET['delete']; try { $client = new Client($_pdo, $id); if ($client->delete()) { echo "
The client with name {$client->name} has been removed.
"; } else { echo "
The client with name {$client->name} could not be removed. Perhaps it's already removed?
"; } } catch (PDOException $e) { echo "
The client could not be removed due to a PDO error.
"; } catch (Exception $e) { echo "
The client with id {$id} could not be found.
"; } echo "
"; } if ($show_individual !== false) { $_id = $show_individual; require('clients-view.php'); } else { require('clients-overview.php'); } ?>