one more problem happens!
i got the form site which contains the user input. (multipart/formdata)
the second page is the safe_data.php which puts the data from the first page into the database. the formpage doesent only contains the checkbox data, it contains also other form-fields.
the problem:
when i got two pages it doesnt serialize the checkbox data. i got an empty result (a:1:{s:11:"piktogramme";s:0:"";}) in the database.
code in safe_data.php to get the data from the checkboxes:
$piktos = ($_GET);
$piktogramme=serialize($piktos);
$piktogramme=addslashes($piktogramme);
but when i got the form and the data-insert in one page it works!
or is the form method the problem?
please help me! got no more ideas whats wrong!