Beispiel #1
0
        <a href="theme_list.php?deleted=1">
            <span class="glyphicon glyphicon-trash" aria-hidden="true"></span>回收站
        </a>
    </div>
    <table class="table table-hover">
        <tr>
            <th>序号</th>
            <th>名称</th>
            <th>简介</th>
            <th>更新者</th>
            <th>更新时间</th>
            <th>操作</th>
        </tr>
    <?php 
$themeDao = new ThemeDao();
$query = $themeDao->getAll($_GET['deleted']);
$number = 0;
while ($row = mysql_fetch_array($query)) {
    $number++;
    ?>
        <tr>
            <td><?php 
    echo $number;
    ?>
</td>
            <td><?php 
    echo $row['name'];
    ?>
</td>
            <td><?php 
    echo $row['description'];