0
我正在嘗試爲我正在構建的fantansy足球網站創建替代。我有一個觀點,顯示11個首發球員和4個替補席。這裏是我的fantansyteam表。Codeigniter在2個視圖之間切換數據並更新數據庫
teamID | fantasyteam | userID | GK1 | GK2 | DEF1 | DEF2 | MID1 | MID2 | FWD1 | FWD2
95 Washindi FC 1 13 2 3 6 7 12 15 18
因此,例如,默認情況下,GK1正在啓動,GK2在板凳上,我想切換它們的值。這是我的看法....
<div class = "starting11">
<?php echo base_url() ?>/team/substitution/<?php echo $gk1['playerName'];?>
</div>
<div class = "bench">
<?php echo base_url() ?>/team/substitution/<?php echo $gk2['playerName'];?>
</div>
我就如何實現這一超級迷糊,我可以創建一個控制器,採取GK1和GK2變量,並將其插入到不同的列,但我想最好的辦法實現這一點。希望得到任何幫助....