52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
|
<?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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
?>
|