vote up 0 vote down star
     while ($row= mysql_fetch_array($result, MYSQL_ASSOC))
{ $id=$row[id];
  $html=<<<html
<tr><td> 
<input style="float:left" type="checkbox" id="$id" name="myBoxes[$id]" value="true">   
<span style="float:left">$row[content]</span>
<span style="color:black;float:right">$row[submitter]</span></td></tr>  
html;
echo $html; 
}


$html=<<<html
</table>
<span onclick="selectAll(true)" style="cursor:pointer;color:black">All</span>
 &nbsp 
<span onclick="selectAll(false)" style="cursor:pointer;color:black">None</span><br/>
<input type="submit" value="Submit"/>
html;
echo $html;

JQuery code:

function selectAll(argument)
{
    $("INPUT[type='checkbox']").attr('checked',argument);
}

PHP code:

<?php foreach ($_POST['myBoxes'] as
    $id => $value)  { echo $value;  
    echo "<br/>";} ?>

Why do I get an error message

Warning: Invalid argument supplied for foreach() in E:\xampp\htdocs\piecework\groupcheck.php on line 2

when I click "None" and "submit", what's the problem?

flag

3 Answers

vote up 0 vote down check

$_POST is an associative array that maps strings to strings; hence, $_POST['myBoxes'] is a string. You cannot run a foreach loop over a string.

link|flag
Huh? But he sent it as an array, right? After all, the field has the name myBoxes[$id]. Then again, I'm not completely sure whether it really is $id or just replaced by the true ID... – Franz Nov 7 at 15:17
If, at the point that code gets executed, $id has the value 1, then the field will be named myBoxes[1]. That's in no way an array, it's just a string. – Thomas Nov 7 at 16:13
vote up 0 vote down

If you remove the $id from your html: name="myBoxes[$id]" does it work?

link|flag
vote up 1 vote down

change this

$row[id]
$row[content]
$row[submitter]

into this:

$row['id']
$row['content']
$row['submitter']
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.