Hola quimfv asi está mi código del checkbox y con el que inserto el dato en la BD...
Código PHP:
Ver original<input type=checkbox name="txtcotiz" value="si" >
y para agregar el dato...
Código PHP:
Ver originalif($btn=="Agregar"){
$nocotiz=$_POST["txtnocotiz"];
$idprod=$_POST["txtidprod"];
$cant=$_POST["txtcant"];
$obs=$_POST["txtobs"];
$id="";
$precio="0.00";
$proveedor="???";
$obscompra="Ninguna";
$cotiz=$_POST["txtcotiz"];
$sql="insert into cotizaciones values ('$nocotiz','$idprod','$cant','$obs','$cot','$id','$precio','$proveedor','$obscompra','$cotiz')";
echo "<script> alert('Se insertaron los productos correctamente');</script>";
}
Gracias por la atención