Kurt: $_POST Array in db eintragen

Beitrag lesen

Bist du sicher, dass du print_r nutzen willst und nicht z.B. serialize?

Hatte darüber nachgedacht, aber ein Kommentar hielt mich vorerst davon ab:

Anonymous 28-Feb-2012 08:44
Please! please! please! DO NOT serialize data and place it into your database. Serialize can be used that way, but that's missing the point of a relational database and the datatypes inherent in your database engine. Doing this makes data in your database non-portable, difficult to read, and can complicate queries.

Kurt