当您在自己的网站上传新闻时,如何添加新闻不会下降?

时间:2017-02-05 08:52:37

标签: php

我有一个带管理面板的网站,在那里我添加了图片和描述,一切正常,当你去活动页面时,所有新上传的内容都显示顶部和旧的机器人,但是在图像上它并没有工作,我的意思是一切都是新的到底不像1 2 3 4而不是4 3 2 1。

源代码:

<?php 
$eventsQuery = mysqli_query($con, "SELECT * FROM events ORDER BY id DESC ");
?>
<table class="table table-hover">
<thead>
<th>Name</th>
<th>Description</th>
<th>Date</th>
<th>Artists</th>
<th></th>
</thead>
<tbody>
<?php while($event = $eventsQuery->fetch_assoc()): ?>
    <tr>
        <td><?php echo $event['name']; ?></td>
        <td><?php echo substr($event['description'], 0, 70); ?>...</td>
        <td><?php echo $event['date']; ?></td>
        <td><?php echo $event['artists']; ?></td>
        <td>
        <div class="pull-right">
            <a href="<?php echo $app_host; ?>/admin/?page=editevent&id=<?php echo $event['id']; ?>"><button class="btn btn-warning">Edit</button></a>
            <a href="<?php echo $app_host; ?>/admin/?page=removeevent&id=<?php echo $event['id']; ?>"><button class="btn btn-danger">Remove</button></a>
        </div>
        </td>
    </tr>
  <?php endwhile; ?>
  </tbody>
  </table>

0 个答案:

没有答案