From c50a323c25a0787ba2051b19721983776a229615 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 5 Feb 2015 00:40:47 +0100 Subject: Initial commit --- include/clients.php | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 include/clients.php (limited to 'include/clients.php') diff --git a/include/clients.php b/include/clients.php new file mode 100644 index 0000000..7248e0c --- /dev/null +++ b/include/clients.php @@ -0,0 +1,98 @@ +. + */ + +require_once('./index.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->getName()}"; + $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->getName()} has been removed.
"; + } else { + echo "
The client with name {$client->getName()} 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'); + } + ?> +
+ +
+ + +
+ + + \ No newline at end of file -- cgit v1.2.3