sql >> Base de Datos >  >> RDS >> Mysql

Inserte 0 o 1 en MySQL según el valor de la casilla de verificación

Pruebe el código como se muestra a continuación

Errores

  • Primero has usado POST método en formulario y obtener variable usando GET
  • Puede intentar lo siguiente para obtener el valor de la casilla de verificación

    if ($subssm) { <input type='checkbox' name='subssm[]' value='1' /> }else{ <input type='checkbox' name='subssm[]' value='0' /> }

    *PHP *

           <form name="staff" method="get" onsubmit="return validateForm()" action="commit.php?action=<?php echo $_GET['action'] ?>">
           <tr>
              <td height="12" align="right" bgcolor="#CCCCCC"><h5>&nbsp;</h5></td>
              <td height="12" align="left" bgcolor="#dfdfdf">&nbsp;<input type="checkbox" name="subagent[]" value="<?php echo $subagent; ?>" />&nbsp;Agent&nbsp;<input type="checkbox" name="subum[]" value="<?php echo $subum; ?>" />&nbsp;UM&nbsp;</td>
              <td rowspan="2" align="left" bgcolor="#dfdfdf">
              <h6>&nbsp;* Selected one or more</h6></td>
            </tr>
            <tr>
              <td height="12" align="right" bgcolor="#CCCCCC"><h5>&nbsp;</h5></td>
              <td height="12" align="left" bgcolor="#dfdfdf">&nbsp;
    <?php
    if ($subssm) {
        <input type='checkbox' name='subssm[]' value='1' />
    }else{
        <input type='checkbox' name='subssm[]' value='0' />
    }
    ?>

    &nbsp;SSM&nbsp;&nbsp;  <input type="checkbox" name="subtutor[]" value="<?php echo $subtutor; ?>" />&nbsp;Tutor&nbsp;</td>
            </tr>
            <input type="submit" name="Submit" value="<?php echo $_GET['action'] ?>" />