예제 #1
0
include 'navigator.php';
?>
    <input type="hidden" id="page" value="area"/>
    <table class="table table-hover">
        <tr>
            <th>序号</th>
            <th>ID</th>
            <th>名称</th>
            <th>操作</th>
        </tr>
        <?php 
include_once $_SERVER['DOCUMENT_ROOT'] . '/casarover/application/services/AreaService.php';
?>
    <?php 
$casaDao = new AreaService();
$result = $casaDao->getAllArea();
?>
    <?php 
$number = 1;
foreach ($result as $value) {
    if ($value['name'] != "其他") {
        ?>
        <tr>
            <td><?php 
        echo $number++;
        ?>
</td>
            <td><?php 
        echo $value['id'];
        ?>
</td>