+ 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->getName()}";
+ $show_individual = $id;
+ } catch (PDOException $e) {
+ $alert = "