commit 9570964b7bc52636e4e2376ec7994af0b50fd46c
parent b7bf7de87542026ddd7611ecfdbd67034ada9748
Author: Gerco van Woudenbergh <[email protected]>
Date: Sat, 15 Apr 2023 12:54:31 +0200
some documentation
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/Lollipop/DatabaseObject.php b/Lollipop/DatabaseObject.php
@@ -29,6 +29,10 @@ namespace Lollipop {
public function load(string $id): bool
{
+ /*this fuction accepts an $id value for the primary key
+ * loads the row into data[]
+ * returns bool if row is found
+ */
$sql = "SELECT * FROM {$this->table} WHERE {$this->primary} = ?";
$stmt = $this->db->conn->prepare($sql);