-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase.php
More file actions
executable file
·55 lines (40 loc) · 1.01 KB
/
database.php
File metadata and controls
executable file
·55 lines (40 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/*
| Trek RPG Site Manager
| Author: Nolanator
| Version: 1.0
|
| File: database.php
| Build 2
| <Changes>
| Slight Table tweak to match site alignments
|
| <Purpose>
| Pages to view the system database. Powered by Document Juggler 2
|
| TRSM1.0 is (c) Nolan 2003-2005, and is covered by the GPL Licence (See gpl.txt for more information)
*/
$pagename = "Database";
include "header.php";
include "./class/djmain.php";
?>
<img src="<? echo $imagepath; ?>header-database.gif">
<table width="95%" align="center"><tr><td>
<!-- Document Juggler 2
Copyright (C) by Oleksandr Missa and Valentyn Stashko, 2000 - 2002, info@ddtstudio.de
All rights reserved -->
<? if(!empty($_SERVER[QUERY_STRING])) { echo $DJ->get_rubricname(); } ?>
<p>
<? echo $DJ->get_currentpath(); ?>
<p>
<? echo $DJ->get_content(); ?>
<p>
<? echo $DJ->get_links(); ?>
<p align="center">
<? echo $DJ->get_catalogindex(1); ?>
<p>
<? echo $DJ->get_credits(); ?>
</td></tr></table>
<?
include "footer.php";
?>