I have problem to insert value of fields as checkbox checked .
please help me.
<ol >
<?php
$i = 0;
$sql="SELECT * FROM import_master WHERE mawb='".trim($_GET['id'])."' ORDER BY conzName";
$rs=mysql_query($sql);
while($row = mysql_fetch_array($rs))
{
?>
<li>
<div><table width="100%" border="0" align="center" cellpadding="5" cellspacing="1" class="entryTable">
<tr>
<td class="label" >
<input type="checkbox" id="chb[]" name="chb[]" value="<?php echo $i++;?>" /></td>
<td width="804" class="label" colspan="2">
Conz.Name <input name="conzname[]" type="text" class="box" id="conzname[]" size= "20" maxlength="255" value="<?php
echo $row['conzName'];?>" /><br/>
Conz.Adress <textarea name="address[]" id="address[]" cols="30" rows="4"><?php echo $row['conzAddress'];?></textarea><br/>
pkgs.No <input name="pkgsno[]"
type="text" class="box" id="pkgsno[]" size="20" maxlength="255" value="<?php echo $row['pkgsNo'];?>" /><br/>
<!-- Retrieved By <input name="retrievedby" type="text" class="box" id="retrievedby" size="20" maxlength="255" value="<?php echo $row['conzName'];?>"/>
<br/>
Packed By <input name="packedby" type="text" class="box" id= "packedby" size="20" maxlength="255" value="" /><br/> -->
</td>
</tr>
</table>
</div>
<?php
}
?>
</ol>