Merge pull request 'Stefan's Controller und Models hinzugefügt' (#2) from stefan into main
Reviewed-on: #2
This commit is contained in:
45
Model/istTeilModel.php
Normal file
45
Model/istTeilModel.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace kinderverwaltung\Model;
|
||||
|
||||
use kinderverwaltung\Library\Msg;
|
||||
use ppb\Model\Database;
|
||||
|
||||
class IstTeilModel extends Database{
|
||||
|
||||
public function getBestellung(){
|
||||
$pdo = $this -> linkDB();
|
||||
|
||||
$sql = "SELECT bid FROM istTeil";
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
}catch (\PDOException $e){
|
||||
//nur zum Testen:
|
||||
//new Msg(true,null,$e);
|
||||
//echo $e;
|
||||
return false;
|
||||
}
|
||||
return $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||
}
|
||||
|
||||
|
||||
public function InsertIstTeil($data){
|
||||
$pdo = $this -> linkDB();
|
||||
|
||||
$sql = "INSERT INTO istTeil(bid, gid)";
|
||||
|
||||
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
}catch (\PDOException $e){
|
||||
//nur zum Testen:
|
||||
//new Msg(true,null,$e);
|
||||
//echo $e;
|
||||
return false;
|
||||
}
|
||||
return $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user