diff --git a/project/src/config/config.php b/project/src/config/config.php new file mode 100644 index 0000000..2641e16 --- /dev/null +++ b/project/src/config/config.php @@ -0,0 +1,22 @@ + \ No newline at end of file diff --git a/project/src/index.php b/project/src/index.php index 521985c..1f878eb 100644 --- a/project/src/index.php +++ b/project/src/index.php @@ -4,16 +4,10 @@ test setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); +} + + +/** * @param string $query + * @param array $parameters * + * @return bool Returns `true` on success, `false` otherwise +*/ + +public function executeQuery(string $query, array $parameters = []) : bool{ + $this->stmt = parent::prepare($query); + foreach ($parameters as $name => $value) { + $this->stmt->bindValue($name, $value[0], $value[1]); + } + + return $this->stmt->execute(); +} + +public function getResults() : array { + return $this->stmt->fetchall(); + +} +} + +?>