BestellungUndGericht
This commit is contained in:
parent
c28a3eb452
commit
5765d49e01
@ -5,7 +5,7 @@
|
|||||||
namespace ppb\Controller;
|
namespace ppb\Controller;
|
||||||
|
|
||||||
use ppb\Library\Msg;
|
use ppb\Library\Msg;
|
||||||
use ppb\Model\GerichtModel;
|
use ppb\Model\BestellungModel;
|
||||||
|
|
||||||
class BestellungController {
|
class BestellungController {
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ class BestellungModel extends Database {
|
|||||||
*/
|
*/
|
||||||
public function updateBestellung($id, $data){
|
public function updateBestellung($id, $data){
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
$sql = "UPDATE Bestellung SET "
|
$sql = "UPDATE Bestellung SET ";
|
||||||
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
||||||
foreach (array_keys($data) as $key){
|
foreach (array_keys($data) as $key){
|
||||||
$sql .= $key . " = :" . $key. ",";
|
$sql .= $key . " = :" . $key. ",";
|
||||||
|
@ -62,7 +62,7 @@ class GerichtModel extends Database {
|
|||||||
*/
|
*/
|
||||||
public function updateGericht($id, $data){
|
public function updateGericht($id, $data){
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
$sql = "UPDATE Gericht SET "
|
$sql = "UPDATE Gericht SET ";
|
||||||
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
||||||
foreach (array_keys($data) as $key){
|
foreach (array_keys($data) as $key){
|
||||||
$sql .= $key . " = :" . $key. ",";
|
$sql .= $key . " = :" . $key. ",";
|
||||||
|
Loading…
Reference in New Issue
Block a user