Compare commits
No commits in common. "976dc6a3abfe331747208c7be3c974cc75de0c8e" and "782311304ee8db373b7ffd4fbe481756f8cc0a0e" have entirely different histories.
976dc6a3ab
...
782311304e
@ -1,20 +0,0 @@
|
|||||||
<?php
|
|
||||||
//Programmiert von: Max Heer, Getestet von:
|
|
||||||
|
|
||||||
namespace kindergartenverwaltung\Controller;
|
|
||||||
|
|
||||||
use kindergartenverwaltung\Libary\Msg;
|
|
||||||
use kindergartenverwaltung\Model\EnthaeltModel;
|
|
||||||
|
|
||||||
class EnthaeltController(){
|
|
||||||
public function getInhaltsstoffe($gerichtId){
|
|
||||||
$result=$this->db->getEnthaelt($gerichtId);
|
|
||||||
return json_encode($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function insertEnthaelt($data){
|
|
||||||
$result=$this->db->insertEnthaelt($data);
|
|
||||||
return json_encode($result);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,52 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace kindergartenverwaltung\EnthaeltModel;
|
|
||||||
|
|
||||||
use kindergartenverwaltung\Library\Msg;
|
|
||||||
|
|
||||||
class EnthaeltModel extends Database{
|
|
||||||
|
|
||||||
public function getEnthaelt($gerichtId){
|
|
||||||
$pdo=$this->linkDB();
|
|
||||||
$params = array();
|
|
||||||
$sql = "SELECT * FROM Enthaelt WHERE gid = :gerichtId;";
|
|
||||||
$params[":gerichtId"] = gerichtId;
|
|
||||||
try{
|
|
||||||
$stmt = $pdo->prepare($sql);
|
|
||||||
$stmt->execute($params);
|
|
||||||
}
|
|
||||||
catch(\PDOExeption $e){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
|
||||||
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function insertEnthaelt($data){
|
|
||||||
$pdo=$this->linkDB();
|
|
||||||
$params = array();
|
|
||||||
$sql = "INSERT INTO Enthaelt (";
|
|
||||||
|
|
||||||
foreach($data as $index=>$value){
|
|
||||||
$sql .= "".$index.",";
|
|
||||||
}
|
|
||||||
$sql = substr($sql,0,strlen($sql)-1).") VALUES (";
|
|
||||||
|
|
||||||
foreach($data as $index=>$value){
|
|
||||||
$sql .= "':".$index."',";
|
|
||||||
$params[":".$index] = $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
$sql = substr($sql,0,strlen($sql)-1).");";
|
|
||||||
|
|
||||||
try{
|
|
||||||
$stmt = $pdo->prepare($sql);
|
|
||||||
$stmt->execute($params);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(\PDOExeption $e){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user