Tokiwa Battle Royale  GE777
A PHP Battle Royale inspired game
 All Data Structures Namespaces Files Functions Variables Pages
1_gbresult.tpl.php
Go to the documentation of this file.
1 <?php if(!defined('IN_GAME')) exit('Access Denied'); ?>
2 <h3 style="font-size:16pt" class="lime">上局切糕情况</h3>
3 <div class="lime"><?php echo $gblog?></div>
4 <?php if(!empty($bwlist)) { ?>
5 <table border="1">
6 <tr>
7 <th class="b1"><span>下注人</span></th>
8 <th class="b1"><span>下注金额</span></th>
9 <th class="b1"><span>下注对象</span></th>
10 <th class="b1"><span>系数</span></th>
11 <th class="b1"><span>收益</span></th>
12 <th class="b1"><span>总计应付</span></th>
13 </tr>
14 <?php if(is_array($bwlist)) { foreach($bwlist as $bw) { ?>
15 <tr>
16 <td class="b3"><span><?php echo $bw['uname']?></span></td>
17 <td class="b3"><span><?php echo $bw['wager']?></span></td>
18 <td class="b3"><span><?php echo $bw['bname']?></span></td>
19 <td class="b3"><span><?php echo $bw['odds']?></span></td>
20 <td class="b3"><span><?php echo $bw['crup']?></span></td>
21 <td class="b3"><span><?php echo $bw['crrst']?></span></td>
22 </tr>
23 <?php } } ?>
24 </table>
25 <?php } ?>