You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
473 B

<?php
require './configuration.php';
$page = new common\Page;
$page->title('EECS 448 Lab 10 - Exercise 4')
->header('Admin Home')
->writes("
<ul>
<li><a href=\"" . system_url('ViewUsers.php') . "\">View Users</a></li>
<li><a href=\"" . system_url('ViewUserPosts.html') . "\">View Posts by User</a></li>
<li><a href=\"" . system_url('DeletePost.html') . "\">Delete Posts</a></li>
</ul>
");
$page->write();