↧
Answer by Marc B for PHP array from checkbox values returns only Array...
Given your name="cb1[]", your $_POST value will simply be $_POST['cb1'], which happens to be an array:foreach($_POST['cb1'] as $key => $value) { echo $value; // spit out a name echo...
View ArticlePHP array from checkbox values returns only Array instead of values
According to suggestion here to use $_POST method to declare array from checkbox values I made it. But it isn't working.In mysql table below, it stores only text that says Array. It doesn't store any...
View Article