mirror of https://github.com/fspc/biketree.git
Bike Tree - https://biketree.bikelover.org
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.
48 lines
908 B
48 lines
908 B
7 years ago
|
<?php session_start(); ?>
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<?php
|
||
|
|
||
|
include ("../settings.php");
|
||
|
include ("../language/$cfg_language");
|
||
|
include ("../classes/db_functions.php");
|
||
|
include ("../classes/security_functions.php");
|
||
|
|
||
|
//creates 3 objects needed for this script.
|
||
|
$lang=new language();
|
||
|
$dbf=new db_functions($cfg_server,$cfg_username,$cfg_password,$cfg_database,$cfg_tableprefix,$cfg_theme,$lang);
|
||
|
$sec=new security_functions($dbf,'Admin',$lang);
|
||
|
|
||
|
//checks if user is logged in.
|
||
|
if(!$sec->isLoggedIn())
|
||
|
{
|
||
|
header ("location: ../login.php");
|
||
|
exit ();
|
||
|
}
|
||
|
|
||
|
//variables needed globably in this file.
|
||
|
$tablename="$cfg_tableprefix".'sales';
|
||
|
|
||
|
if(isset($_GET['id']))
|
||
|
{
|
||
|
$id=$_GET['id'];
|
||
|
|
||
|
}
|
||
|
|
||
|
$dbf->deleteRow($tablename,$id);
|
||
|
|
||
|
|
||
|
|
||
|
$dbf->closeDBlink();
|
||
|
|
||
|
?>
|
||
|
<br>
|
||
|
<a href="manage_sales.php"><?php echo $lang->manageSales ?>--></a>
|
||
|
<br>
|
||
|
<a href="sale_ui.php"><?php echo $lang->startSale ?>--></a>
|
||
|
</body>
|
||
|
</html>
|