Compare commits
	
		
			6 Commits
		
	
	
		
			1826e9f61b
			...
			Tagesplan
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 64b6aa2716 | |||
| 34ae68bfdc | |||
| 1f2789eead | |||
| bbb5ebcbac | |||
| e730377103 | |||
| add9a27630 | 
@@ -44,6 +44,13 @@ class BenutzerController
 | 
			
		||||
        return json_encode($result);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function anmeldeVersuch()
 | 
			
		||||
    {
 | 
			
		||||
        $result = $this->db->anmeldeVersuch();
 | 
			
		||||
 | 
			
		||||
        return json_encode($result);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
?>
 | 
			
		||||
@@ -33,5 +33,11 @@ class TagesplanController
 | 
			
		||||
        $result = $this->db->deleteTagesplan($id);
 | 
			
		||||
        return json_encode($result);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function getGerichteOnTag()
 | 
			
		||||
    {
 | 
			
		||||
        $result = $this->db->getGerichteOnTag();
 | 
			
		||||
        return json_encode($result);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
?>
 | 
			
		||||
@@ -86,6 +86,7 @@ class BenutzerModel extends Database
 | 
			
		||||
            $stmt = $pdo->prepare($sql);
 | 
			
		||||
            $stmt->execute($params);
 | 
			
		||||
        } catch (\PDOException $e) {
 | 
			
		||||
            echo "Faulty Sql? " . $sql;
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
@@ -105,6 +106,7 @@ class BenutzerModel extends Database
 | 
			
		||||
            $stmt = $pdo->prepare($sql);
 | 
			
		||||
            $stmt->execute();
 | 
			
		||||
        } catch (\PDOException $e) {
 | 
			
		||||
            echo "Faulty Sql? " . $sql;
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
@@ -113,6 +115,34 @@ class BenutzerModel extends Database
 | 
			
		||||
        return $result;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function anmeldeVersuch()
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
        $pdo = $this->linkDB();
 | 
			
		||||
 | 
			
		||||
        $params = array();
 | 
			
		||||
 | 
			
		||||
        $params[":Benutzername"] = $_GET["Benutzername"];
 | 
			
		||||
        $params[":passwort"] = $_GET["passwort"];
 | 
			
		||||
 | 
			
		||||
        $sql = "SELECT * FROM Benutzerkonto WHERE name = :Benutzername AND passwort = :passwort";
 | 
			
		||||
 | 
			
		||||
        try {
 | 
			
		||||
            $stmt = $pdo->prepare($sql);
 | 
			
		||||
            $stmt->execute($params);
 | 
			
		||||
        } catch (\PDOException $e) {
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $result = $stmt->fetchALL(\PDO::FETCH_ASSOC);
 | 
			
		||||
 | 
			
		||||
        if (count($result) > 0)
 | 
			
		||||
            return true;
 | 
			
		||||
        else
 | 
			
		||||
            return false;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
?>
 | 
			
		||||
@@ -65,5 +65,28 @@ class TagesplanModel extends Database
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function getGerichteOnTag()
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
        $pdo = $this->linkDB();
 | 
			
		||||
 | 
			
		||||
        $datum = $_GET["datum"];
 | 
			
		||||
 | 
			
		||||
        $sql = "SELECT Gericht.id, Gericht.name, Gericht.preis, Gericht.beschreibung FROM Gericht LEFT JOIN GibtsAm ON Gericht.id = GibtsAm.gid LEFT JOIN Tagesplan ON GibtsAm.tid = Tagesplan.id WHERE Tagesplan.datum = '$datum'";
 | 
			
		||||
 | 
			
		||||
        try {
 | 
			
		||||
            $stmt = $pdo->prepare($sql);
 | 
			
		||||
            $stmt->execute();
 | 
			
		||||
        } catch (\PDOException $e) {
 | 
			
		||||
            echo $sql . " This do be faulty";
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
 | 
			
		||||
 | 
			
		||||
        return $result;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
?>
 | 
			
		||||
		Reference in New Issue
	
	Block a user