コード例 #1
0
ファイル: server.php プロジェクト: kyroskoh/rokket
            	</div>
                
            	<div class="input row">
            		<label class="col-sm-5"><?php 
    echo lang::get('game');
    ?>
</label>
                    <div class="col-sm-7">
                        
                        <select name="gameID">
                        <option value=""><?php 
    echo lang::get('game_select');
    ?>
</option>
                        <?php 
    $games = games::getAll();
    foreach ($games as $var) {
        echo '<option value="' . $var['id'] . '">' . $var['name'] . '</option>';
    }
    ?>
                        </select>
                    </div>
            	</div>
                
            </div>
        
        </div>
        
        <hr>
        
        <h2><?php