使用 HTML 和 PHP 表单切换开关

我已经切换到我的 HTML 表单,如下所示


<div class="form-group">

             <span><b>GAME MODE?</b></span> &nbsp;<div class="btn-group" id="status" data-toggle="buttons">


              <label class="btn btn-default btn-on">

              <input type="radio" value="1" name="gamemode">ON</label>

              <label class="btn btn-default btn-off active">

              <input type="radio" value="0" name="gamemode" checked="checked">OFF</label>

            </div>

            </div>

在提交表单上,我获得了所有 $_POST 值,但只是没有获得切换开关的值。我想我遗漏了一些东西。我正在尝试在 PHP 中像下面那样获取它


$gamemode=$_POST['gamemode'];

但它总是空的。我能知道是否有人可以帮助我正确使用拨动开关吗?


红颜莎娜
浏览 93回答 1
1回答

暮色呼如

您的代码应该有一个 form 标签,其 method 属性设置为 post。然后一旦按下提交按钮形成$_POST数据,您就可以使用检索该信息$_POST['gamemode']。我使用了下面的代码并进行了测试并获得了1提交ON时间和0提交时间OFF。<div class="form-group">&nbsp; &nbsp; <span><b>GAME MODE?</b></span> &nbsp;<div class="btn-group" id="status" data-toggle="buttons">&nbsp; &nbsp; <form method="post">&nbsp; &nbsp; &nbsp; &nbsp; <label class="btn btn-default btn-on">&nbsp; &nbsp; &nbsp; &nbsp; <input type="radio" value="1" name="gamemode">ON</label>&nbsp; &nbsp; &nbsp; &nbsp; <label class="btn btn-default btn-off active">&nbsp; &nbsp; &nbsp; &nbsp; <input type="radio" value="0" name="gamemode" checked="checked">OFF</label>&nbsp; &nbsp; &nbsp; &nbsp; <input type="submit" value="submit" name="submit">&nbsp; &nbsp; </form>&nbsp;&nbsp;</div>
打开App,查看更多内容
随时随地看视频慕课网APP