예제 #1
0
HTMLOUT::frame_begin(false);
title("OBBLM Troubleshooting");
?>
<h1>Leagues</h1>
<table>
    <thead>
        <th>League ID</th>
        <th>Tie Teams to Divisions</th>
        <th>Name</th>
        <th>Date Created</th>
        <th>Location</th>
        <th>Divisions</th>
    </thead>
    <tbody style="text-align: center">
        <?php 
foreach (League::getLeagues() as $league) {
    ?>
            <tr>
                <td><?php 
    echo $league->lid;
    ?>
</td>
                <td><?php 
    echo $league->tie_teams;
    ?>
</td>
                <td><?php 
    echo $league->name;
    ?>
</td>
                <td><?php