Hallo,
ich habe ein - hoffe ich - simples Problem.
Ich habe eine Textarea. Wenn ich dort etwas tippe wie "Test{Irgendwas}Test", dann speichert es aber in der Spalte in der Datenbanktabelle nur "TestTest". Allerdings weiß ich nicht wieso.
Ich hoffe jemand weiß, warum das so ist.
Grüße,
Max
ich habe ein - hoffe ich - simples Problem.
Ich habe eine Textarea. Wenn ich dort etwas tippe wie "Test{Irgendwas}Test", dann speichert es aber in der Spalte in der Datenbanktabelle nur "TestTest". Allerdings weiß ich nicht wieso.
Code:
$content = addslashes($_POST['content']); #echo $content; gibt auch schon nur "TestTest" aus. $insertBox = $LightDB->query("UPDATE `".PREFIX."boxes` SET name = :name, widget = :widget, prio = :prio, template = :template, placeholder = :placeholder, content = :content, status = :status WHERE id = :page"); $insertBox->bindParam('name', $name); $insertBox->bindParam('page', $edit); $insertBox->bindParam('widget', $widget); $insertBox->bindParam('prio', $prio); $insertBox->bindParam('template', $template); $insertBox->bindParam('placeholder', $placeholder); $insertBox->bindParam('content', $content); $insertBox->bindParam('status', $status);
Grüße,
Max
Kommentar