Tengo un formulario para actualizar datos en php y dentro tengo un botón de opción
buenos días experto, tengo un problema que no hayo como resolver, tengo un formulario para editar una información, pero dentro de el tengo un botón de opción que hay que tildar para saber que se ha verificado dicha información, cuando se selecciona el botón de opción debería guardarse en la base de datos. Le envío el código para que me ayuden por favor. :(
<!DOCTYPE html>
<html>
<head>
<title>xxxxx</title>
</head>
<header>
<h2 align="center"><img src="banner2.jpg" width="646" height="166"></h2>
</header>
<?php
$CED1="";
$NOMB1="";
$Apellido="";
$NACION1="";
$EDO1="";
$SEX1="";
$TELEF1="";
$TELEF2="";
$Email="";
$NumDeposito="";
$revisado="";
if(isset($_POST["btn1"])){
$btn=$_POST["btn1"];
$bus=$_POST["txtbus"];
if($btn=="Buscar"){
$sql="select * from xxx where CED1=". $bus;
$cs=mysql_query($sql);
while($resul=mysql_fetch_array($cs)){
$CED1=$resul[0];
$NOMB1=$resul[1];
$Apellido=$resul[2];
$NACION1=$resul[3];
$EDO1=$resul[4];
$SEX1=$resul[5];
$TELEF1=$resul[6];
$TELEF2=$resul[7];
$Email=$resul[8];
$NumDeposito=$resul[11];
$revisado=$resul[21];
}
}
}
$sql = "UPDATE xxxx set ";
$sql .= "CED1='" . $_POST["CED1"] . "' ,";
$sql .= "NOMB1='" . $_POST["NOMB1"] . "' , ";
$sql .= "Apellido='" . $_POST["Apellido"] . "' , ";
$sql .= "EDO1='" . $_POST["EDO1"] . "' , ";
$sql .= "SEX1='" . $_POST["SEX1"] . "' , ";
$sql .= "TELEF1='" . $_POST["TELEF1"] . "' , ";
$sql .= "TELEF2='" . $_POST["TELEF2"] . "' , ";
$sql .= "Email='" . $_POST["Email"] . "' , ";
$sql .= "NumDeposito='" . $_POST["NumDeposito"] . "' ";
$sql .= "where CED1=" . $_POST["CED1"];
if(mysql_query($sql)){
echo "<script> alert('Se actualizo correctamente');</script>";
}
?>
<form name="prueba" action="" method="post">
<center>
<table width="834" border="1" align="center">
<tr>
<td width="414" align="center" valign="middle"><h2><strong>Actualizar Datos</strong></h2></td>
<td width="169" align="center" valign="middle"><h2><strong>Actualizar Cédula</strong></h2></td>
</tr>
<tr>
<td align="center" valign="middle"><table border="2">
<tr>
<td>Buscar</td>
<td><input type="text" name="txtbus"/></td>
<td><input type="submit" name="btn1" value="Buscar" /></td>
</tr>
</table>
<table border="2">
<tr>
<td width="149"><div align="justify"><strong>Cédula</strong></div></td>
<td width="365"><div align="justify">
<input name="NACION1" type="text" id="NACION1" value="<?php echo $NACION1?>" size="4" />
<input name="CED1" type="text" id="CED1" value="<?php echo $CED1;?>"/>
</div></td>
</tr>
<tr>
<td><div align="justify"><strong>Nombre</strong></div></td>
<td><div align="justify">
<input type="NOMB1" name="NOMB1" value="<?php echo $NOMB1;?>"/>
</div></td>
</tr>
<tr>
<td><div align="justify"><strong>Apellido</strong></div></td>
<td><div align="justify">
<input name="Apellido" type="text" id="Apellido" value="<?php echo $Apellido;?>"/>
</div></td>
</tr>
<tr>
<td><div align="justify"><strong>Estado</strong></div></td>
<td><div align="justify">
<input name="EDO1" type="EDO1" value="<?php echo $EDO1;?>" size="4"/>
<strong>Sexo: </strong>
<input name="SEX1" type="SEX1" value="<?php echo $SEX1;?>" size="4"/>
</div></td>
</tr>
<tr>
<td><div align="justify"><strong>Teléfono</strong></div></td>
<td><div align="justify">
<input type="TELEF1" name="TELEF1" value="<?php echo $TELEF1;?>"/>
</div></td>
</tr>
<td><div align="justify"><strong>Celular</strong></div></td>
<td><div align="justify">
<input type="TELEF2" name="TELEF2" value="<?php echo $TELEF2;?>"/>
</div></td>
</tr>
<td><div align="justify"><strong>Email</strong></div></td>
<td><div align="justify">
<input type="Email" name="Email" value="<?php echo $Email;?>"/>
<label for="checkbox"></label>
</div></td>
</tr>
<td><div align="justify"><strong>Número de depósito</strong></div></td>
<td><div align="justify">
<input...