+ View information of the contact with id
+ // ?delete= Delete the contact with id
+ //------------------------------------------------------------------------------
+
+ // The header of the page
+ $header = 'Contacts';
+ // Whether or not to show an individual contact in the end (false if not, or the id if yes)
+ $show_individual = false;
+
+ // View contact
+ if (isset($_GET['id'])) {
+ $id = (int) $_GET['id'];
+ try {
+ $contact = new contact($_pdo, $id);
+ $header = "Contacts / {$contact->getName()}";
+ $show_individual = $id;
+ } catch (PDOException $e) {
+ $alert = "