我在plus2net网站(http://www.plus2net.com/php_tutorial/php_signup.php)
找到了注册表格的完整代码我需要在上面的表单中添加一个单选按钮。请帮我如何添加一个单选按钮,它还应该在数据库中写入数据。
告诉我应该在现有代码中添加代码。
提前致谢。
这是现有代码:
<div class="col-md-12 margin-bottom-15">
<label for="department" class="col-sm-2 control-label">Department</label>
<div class="col-sm-10">
<label class="radio-inline"><input type="radio" name="department" value="ckgs" checked> CKGS </label>
<label class="radio-inline"><input type="radio" name="department" value="cnk"> CNK </label>
</div>
</div>
答案 0 :(得分:0)
根据您的代码:
<div class="col-md-12 margin-bottom-15">
<label for="department" class="col-sm-2 control-label">Department</label>
<div class="col-sm-10">
<label class="radio-inline"><input type="radio" name="department" value="ckgs" checked> CKGS </label>
<label class="radio-inline"><input type="radio" name="department" value="cnk"> CNK </label>
</div>
</div>
对于值为sty
的第三个单选按钮,您只需添加:
<label class="radio-inline"><input type="radio" name="department" value="sty"> STY </label>
^^^ ^^^
Change the above to whatever value you want for the radio button.