mirror of
https://github.com/fspc/biketree.git
synced 2026-09-16 14:31:36 -04:00
First commit of biketree to github!
This commit is contained in:
Executable
+75
@@ -0,0 +1,75 @@
|
||||
<?php session_start();?>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php
|
||||
include ("../settings.php");
|
||||
include ("../classes/db_functions.php");
|
||||
include ("../language/$cfg_language");
|
||||
include ("../classes/security_functions.php");
|
||||
include ("../classes/form.php");
|
||||
include ("../classes/display.php");
|
||||
$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,'Sales Clerk',$lang);
|
||||
$display=new display($dbf->conn,$cfg_theme,$cfg_currency_symbol,$lang);
|
||||
if(!$sec->isLoggedIn())
|
||||
{
|
||||
header ("location: ../login.php");
|
||||
exit();
|
||||
}
|
||||
|
||||
echo "Processing...";
|
||||
|
||||
//check to make sure it's a number
|
||||
if(!strval(floatval($_POST[openCount])) == strval($_POST[openCount])){
|
||||
echo "<script>document.location.href='openshop.php?error=2&count=$_POST[openCount]'</script>";
|
||||
exit();
|
||||
}
|
||||
|
||||
//check to make sure it was the administrator who counted
|
||||
if(!$_POST[counter]){
|
||||
echo "<script>document.location.href='openshop.php?error=1'</script>";
|
||||
exit();
|
||||
}
|
||||
|
||||
//$tablename = $cfg_tableprefix.'users';
|
||||
$userLoginName = $dbf->idToField($cfg_tableprefix.'users','username',$_SESSION['session_user_id']);
|
||||
|
||||
|
||||
$tablename="$cfg_tableprefix".'books';
|
||||
$field_names=null;
|
||||
$field_data=null;
|
||||
$today = date('Y-m-d');
|
||||
$adminID = $_SESSION['session_user_id'];
|
||||
$field_names=array('date','event','user','ammount','data');
|
||||
$field_data=array("$today", "open", "$adminID","$_POST[openCount]","$_POST[mechID]");
|
||||
|
||||
$dbf->insert($field_names,$field_data,$tablename,"");
|
||||
|
||||
$tablename="$cfg_tableprefix".'visits';
|
||||
$tdin = date('Y-m-d H:i:s');
|
||||
$field_names=array('userID','intime','activity');
|
||||
$field_data=array("$_POST[mechID]", "$tdin", "Mechanic");
|
||||
$dbf->insert($field_names, $field_data, $tablename, "");
|
||||
$adminID = $dbf->idToField($cfg_tableprefix.'users','customerID',$_SESSION['session_user_id']);
|
||||
$field_data=array("$adminID", "$tdin", "Administrator");
|
||||
$dbf->insert($field_names, $field_data, $tablename, "");
|
||||
//$query = "INSERT INTO 'visits' ('userID' ,'intime' ,'activity') VALUES ('$_POST[mechID]', '$tdin', '\"using\"')";
|
||||
//mysql_query($query);
|
||||
|
||||
echo "<script>document.location.href='../home.php'</script>";
|
||||
|
||||
$dbf->closeDBlink();
|
||||
|
||||
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user