este es el codigo
Código PHP :
<form action="editar.php" method="POST">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Cod.</th>
<th>Nombre / Descripción</th>
<th>Ficha Tecnica</th>
<th>Selección</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Cod.</th>
<th>Nombre / Descripción</th>
<th>Ficha Tecnica</th>
<th>Selección</th>
</tr>
</tfoot>
<tbody>
<?php
while ($row = mysqli_fetch_array($query, MYSQLI_ASSOC)) {
$repuestos=$_SESSION['repuestos'];
foreach($repuestos as $codrpst){
switch ($codrpst) {
case $row['codrepuesto']:
$chk="checked";
break;
default:
$chk="";
break;
}
}
?>
<tr>
<td ><?php echo $row['codrepuesto'];?></td>
<td ><?php echo $row['nombrepuesto'];?></td>
<td ><?php echo $row['detallerpst'];?></td>
<td><center>
<label class="btn btn-info">
<input type='checkbox' name="repuestos[]"* value="<?php echo $row['codrepuesto'];?>" <?php echo $chk;?>>
</label></center>
</td>
</tr>
<?php
}
?>
gracias de antemano por la ayuda....
