<?php
/*-------------------------------------------------------------------------
D.E.B.T.S - Web Based Personal Finance
Copyright (C) 2004 Ben Burgess
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--------------------------------------------------------------------------*/
include_once("settings.inc");
include_once("security.inc");
// Check for first time run
if($firsttime == 1)
{
$reloc = "Location: ".$mainpage."/install.php";
header($reloc);
exit;
}
//
SEC_Validate();
print("
<HEAD>
<Title>
DEBTS
</TITLE>
</HEAD>
<FRAMESET COLS=\"125,90%\" BORDER=\"0\">
<FRAME SRC=\"menu.php\" NAME=\"1\" SCROLLING=NO>
<FRAMESET ROWS=\"100%\">
<FRAME SRC=\"debts.php?scr=t\" NAME=\"2\" MARGINHEIGHT=\"0\" MARGINWIDTH=\"5\">
</FRAMESET>
</FRAMESET>
<NOFRAMES>
<!-- Get a NEW BROWSER!! -->
</NOFRAMES>
");
?>