show/hide this revision's text 4 deleted 10 characters in body

The key code is:

  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]name="mycheckbox[]"  value="truevalue="$id">   
<span style="float:left">$row[content]</span>
<span style="color:black;float:right">$row[submitter]</span></td></tr>  
html;
echo $html; 
}

There are many checkboxes.

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]?

show/hide this revision's text 3 added 187 characters in body; [made Community Wiki]

The key code is:

   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>
>$row[submitter]</span></td></tr>  
html;
echo $html; 
}

There are many checkboxes.

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]?

show/hide this revision's text 2 deleted 1098 characters in body

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>
 &nbsp 
<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>

There are many checkboxes.

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]?

show/hide this revision's text 1