Compare commits
No commits in common. "2b7811f0446f162e02eaf7f1c75a07e6f4c1ae1e" and "ef45413beedab49544a65d9c3493c4240b8bb306" have entirely different histories.
2b7811f044
...
ef45413bee
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
// Erstellt durch Stefan Groß
|
|
||||||
namespace kinderverwaltung\Controller;
|
|
||||||
|
|
||||||
class istTeilController {
|
|
||||||
private $db;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
|
|
||||||
$this-> db = new istTeilModel();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getBestellung(){
|
|
||||||
$result = $this->db->getBestellung();
|
|
||||||
|
|
||||||
return json_encode($result);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,45 +0,0 @@
|
|||||||
<?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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user