Compare commits
No commits in common. "40b6c85eb9bf8e1f9ab336603f20372315f65286" and "bbb5ebcbac50ed4d559445e50da8100466991b15" have entirely different histories.
40b6c85eb9
...
bbb5ebcbac
@ -18,18 +18,6 @@ class BenutzerController
|
||||
$this->db = new BenutzerModel();
|
||||
}
|
||||
|
||||
public function getBenutzer($id) {
|
||||
$result = $this->db->selectBenutzer($id);
|
||||
if ($id !== false) {
|
||||
if ($result)
|
||||
$result = $result[0];
|
||||
else
|
||||
$result = false;
|
||||
}
|
||||
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
// Updated einen Benutzer
|
||||
public function updateBenutzer($elternId, $data)
|
||||
{
|
||||
|
@ -9,31 +9,6 @@ use ppb\Library\Msg;
|
||||
|
||||
class BenutzerModel extends Database
|
||||
{
|
||||
public function selectBestellung($id)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
$sql = "SELECT FROM Benutzer WHERE id = :id";
|
||||
$params["id"] = $id;
|
||||
|
||||
//Ausführen des SQL befehls
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||
|
||||
//Die Datensätze werden nummeriert
|
||||
foreach ($result as $key => $row) {
|
||||
$result[$key]["id"] += 0;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user