fixes
This commit is contained in:
@@ -1,60 +1,66 @@
|
||||
<?php
|
||||
namespace VPR_Schnittstelle\EnthaeltModel;
|
||||
use kindergartenverwaltung\Library\Msg;
|
||||
|
||||
public function getInhaltsstoff(){
|
||||
$pdo=$this->linkDB();
|
||||
|
||||
namespace ppb\Model;
|
||||
|
||||
use ppb\Library\Msg;
|
||||
|
||||
class InhaltsstoffModel extends Database
|
||||
{
|
||||
|
||||
public function getInhaltsstoff()
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "SELECT * FROM Inhaltsstoff";
|
||||
try{
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute();
|
||||
}
|
||||
catch(\PDOExeption $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function insertInhaltsstoff($data){
|
||||
$pdo=$this->linkDB();
|
||||
|
||||
public function insertInhaltsstoff($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$params = array();
|
||||
$sql = "INSERT INTO Inhaltsstoff ";
|
||||
foreach($data as $index=>$value){
|
||||
$sql .= "".$index.",";
|
||||
foreach ($data as $index => $value) {
|
||||
$sql .= "" . $index . ",";
|
||||
}
|
||||
$sql = substr($sql,0,strlen($sql)-1).") VALUES (";
|
||||
$sql = substr($sql, 0, strlen($sql) - 1) . ") VALUES (";
|
||||
|
||||
foreach($data as $index=>$value){
|
||||
$sql .= "':".$index."',";
|
||||
$params[":".$index] = $value;
|
||||
foreach ($data as $index => $value) {
|
||||
$sql .= "':" . $index . "',";
|
||||
$params[":" . $index] = $value;
|
||||
}
|
||||
|
||||
$sql = substr($sql,0,strlen($sql)-1).");";
|
||||
$sql = substr($sql, 0, strlen($sql) - 1) . ");";
|
||||
|
||||
try{
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
return true;
|
||||
}
|
||||
catch(\PDOExeption $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function deleteInhaltsstoff($id){
|
||||
$pdo=$this->linkDB();
|
||||
public function deleteInhaltsstoff($id)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$params = array();
|
||||
$sql = "DELETE FROM Inhalsstoff WHERE id=:id";
|
||||
$params[":id"] = $id;
|
||||
try{
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
return true;
|
||||
}
|
||||
catch(\PDOExeption $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user