24 lines
648 B
PHP
24 lines
648 B
PHP
<h2>All Articles</h2>
|
|
<?php if (isset($results['error'])) { ?>
|
|
<div class="error"><?php echo $results['error'] ?></div>
|
|
<?php }
|
|
if (isset($results['status'])) {?>
|
|
<div class="status"><?php echo $results['status'] ?></div>
|
|
<?php } ?>
|
|
<table>
|
|
<tr>
|
|
<th>Publication Date</th>
|
|
<th>Article</th>
|
|
</tr>
|
|
<?php foreach($results as $article) { ?>
|
|
<tr>
|
|
<td><?php echo date('j M Y', $article->publication_date)?></td>
|
|
<td>
|
|
<?php echo $article->title?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
<p><a href="admin.php?action=new">New article</a></p>
|
|
<p><a href="./">Return to Homepage</a></p>
|