<?php
error_reporting(7);
# Удаление просроченных счетов, хранящихся более двух недель
@mysql(DBName,"DELETE FROM `finance_schet` WHERE `paytime` = '0' AND `createtime` < '".(time()-1468800)."'");
if ($query2=='opl') include($admpath.'finance/schet_oplachenye.php');
if ($query2=='neopl') include($admpath.'finance/schet_neoplachenye.php');
if ($query2=='poisk') include($admpath.'finance/schet_poisk.php');
if ($query2=='info') include($admpath.'finance/schet_info.php');
if ($query2=='null') include($admpath.'finance/schet_null.php');
if ($query2=='pay') include($admpath.'finance/schet_pay.php');
if ($query2=='edit') include($admpath.'finance/schet_edit.php');
print '<a href="?'.$id.'/finance/schet/opl">Оплаченные</a><br/>';
print '<a href="?'.$id.'/finance/schet/neopl">Неоплаченые</a><br/>';
print '<a href="?'.$id.'/finance/schet/poisk">Поиск счета</a><br/>';
exit;
?>