我目前有一个带有单选按钮的第一页。我希望第二页为每个不同的单选按钮显示不同的表格。
我的观点:
<?php echo form_open('employee','class="form-inline"'); ?>
<h3>Select User</h3>
<?php echo form_dropdown('user-name', $name_list2);?>
<h3>Select A Shift For Person 2</h3>
<input type="radio" name="shift-type2" value="5" class="btn" data-toggle="button" <?php echo set_radio('shift-type2', '5'); ?> >Opening Cook</input><br>
<input type="radio" name="shift-type2" value="6" class="btn" data-toggle="button" <?php echo set_radio('shift-type2', '6'); ?> >Opening Order-Taker</input><br>
<input type="radio" name="shift-type2" value="7" class="btn" data-toggle="button" <?php echo set_radio('shift-type2', '7'); ?> >Closer</input><br>
<input type="radio" name="shift-type2" value="8" class="btn" data-toggle="button" <?php echo set_radio('shift-type2', '8'); ?> >Saturday Cook</input><br>
<input type="radio" name="shift-type2" value="9" class="btn" data-toggle="button" <?php echo set_radio('shift-type2', '9'); ?> >Saturday Order-Taker</input><br>
</form>
</div>
我不知道在我的控制器上放什么。我想它会获取值并使用 if 语句来显示每个表。所以它应该是这样的:“如果值等于 2,则显示表 B。”
有人知道怎么做吗?