This is the code:
$result=mysql_query("select * from submissions where piecework_id='$piecework_id' and status is null order by when_submit limit 0,50")or die(mysql_error());
$count=mysql_num_rows($result);
if ($count>0)
{
$html=<<<html
<span style="color:#f00;">Waiting for check</span><br/>
<form action="groupcheck.php?taskid='$piecework_id'" method="post">
<table style="width:100%">
html;
echo $html;
while ($row= mysql_fetch_array($result, MYSQL_ASSOC))
{ $id=$row[id];
$html=<<<html
<tr><td>
<input style="float:left" type="checkbox" id="$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>
 
<span onclick="selectAll(false)" style="cursor:pointer;color:black">None</span><br/>
<input type="submit" value="Submit"/>
html;
echo $html;
}
The key code is:
<input style="float:left" type="checkbox" id="$id" value="true">
<span style="float:left">$row[content]</span>
<span style="color:black;float:right">$row[submitter]</span>
How to receive these checkbox values in another PHP file?
You know, you need to name these checkboxes so a PHP file can receive these values on the other side. But how to name these checkboxes? If I name 1,2, 3,...,how can I associate them with $row[id]?