Grüßt euch,
ich habe ein großes Problem: Ich bekomme ständig nur die letzte Übergabe in die Datenbank, obwohl ich mehrere Häckchen setze
$this->db
->prepare("
UPDATE produkte
SET
titel = ?, beschreibung = ?, preis = ?, preisart = ?,
accpaypal = ?, telefon = ?, anzeigeart = ?, postleitzahl = ?, stadt = ?, strasse = ?, hausnummer = ?,
price_stock = ?, price_tax = ?, price_per = ?, product_lat = ?, product_lng = ?, bekleidung = ?
WHERE id = ?")
->execute([
__Post("product_title")
, __Post("product_text")
, __Price(__Post("product_price"))
, __Post("preisart")
, __Post("product_paypal")
, __Post("product_phone")
, __Post("ad_type")
, __Post("product_postcode")
, __Post("product_city")
, __Post("product_street")
, __Post("product_street_number")
, __Post("price_stock")
, __Post("price_tax")
, __Post("price_per")
, __Post("product_lat")
, __Post("product_lng")
, __Post("product_bekleidung")
, $product["id"]
]);
Ich hab was gelesen, dass man es wohl mit implode lösen kann, aber wie bekomme ich es hin?
Hab es damit probiert, aber es klappt nicht
implode(',', __Post ['product_bekleidung'])
Ist jemand so pfiffig von euch und kann mir helfen?
Vielen Dank ))
ich habe ein großes Problem: Ich bekomme ständig nur die letzte Übergabe in die Datenbank, obwohl ich mehrere Häckchen setze
$this->db
->prepare("
UPDATE produkte
SET
titel = ?, beschreibung = ?, preis = ?, preisart = ?,
accpaypal = ?, telefon = ?, anzeigeart = ?, postleitzahl = ?, stadt = ?, strasse = ?, hausnummer = ?,
price_stock = ?, price_tax = ?, price_per = ?, product_lat = ?, product_lng = ?, bekleidung = ?
WHERE id = ?")
->execute([
__Post("product_title")
, __Post("product_text")
, __Price(__Post("product_price"))
, __Post("preisart")
, __Post("product_paypal")
, __Post("product_phone")
, __Post("ad_type")
, __Post("product_postcode")
, __Post("product_city")
, __Post("product_street")
, __Post("product_street_number")
, __Post("price_stock")
, __Post("price_tax")
, __Post("price_per")
, __Post("product_lat")
, __Post("product_lng")
, __Post("product_bekleidung")
, $product["id"]
]);
Ich hab was gelesen, dass man es wohl mit implode lösen kann, aber wie bekomme ich es hin?
Hab es damit probiert, aber es klappt nicht
implode(',', __Post ['product_bekleidung'])
Ist jemand so pfiffig von euch und kann mir helfen?
Vielen Dank ))
Kommentar