Просмотр файла dotwidgeta/admin/index.php

Размер файла: 1.46Kb
<?php

/***********************************************************

*

* dotWidget for Articles v0.1

*    - Articles Management System in PHP & mySQL

* (c) Keith Reichley 2001

* For more information, visit http://www.dotwidget.com

* 

***********************************************************/

header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");    

header ("Cache-Control: no-cache, must-revalidate");  

header ("Pragma: no-cache");                          



include("dotwidgeta_config.php"); // change if the config file is not in admin directory

$metatitle = $sitename . " - Manage Articles";

include($admin_header_file);



print "<blockquote><p class=\"PAGEHEADING\">Admin: Main Menu";

?>



<p><span class="TIPLABEL">Tip</span><span class="TIPTEXT">: Before you add an Article, make sure<br>that the Author and Category(s) already exist.</span></p>



<table border=0>

<tr valign="top">

<td>

<B>

<UL>

<LI><A HREF="authors.php">Authors</A>

<LI><A HREF="categories.php">Categories</A>

<LI><A HREF="articles.php">Articles</A>

</UL>

<UL>

<LI><A HREF="editconfig.php">Edit Configuration</A>

</UL>

</B>

</td>

<td align="right">

<?php if($logoff != "1"): ?>

<FORM ACTION="index.php?logoff=1"METHOD=POST>

<INPUT TYPE=SUBMIT NAME="submit" VALUE="Log Off">&nbsp;&nbsp;&nbsp;

</FORM>

<?php else: ?>

<p>** Logged off **&nbsp;&nbsp;&nbsp;

<?php endif; ?>

</td></tr></table>



<?php include("includes/adminfooter.inc"); ?>