ok

Mini Shell

Direktori : /home2/selectio/public_html/tnpsctestbatch.com/admin/old/
Upload File :
Current File : /home2/selectio/public_html/tnpsctestbatch.com/admin/old/gallery-add.php

<?php  include "header.php";?>

<?php
if(isset($_POST['add_gallery'])){
        try{
        $title=$_POST['title'];
        $date =  date("Y-m-d");
        if(isset($_FILES['gallery_image']) && $_FILES["gallery_image"]["name"]!=""){
            $file_name = $_FILES['gallery_image']['name'];
            $tmp = explode('.', $file_name);
            $extension = end($tmp);
            $extension = end(explode(".", $_FILES["gallery_image"]["name"]));
            $image = rand(10,1000000000)."-".$date."-org_signature." . $extension;
            $upload = move_uploaded_file($_FILES['gallery_image']['tmp_name'], '../upload/gallery/' . $image);
            $banner = 'upload/gallery/' . $image;
                    }
                    $statement = $pdo->prepare("INSERT INTO `tbl_gallery`(`title`,`gallery_images`)
                    VALUES ('$title','$banner')");

                  
                   	$result = $statement->execute();
                   
                    if($result){
                     echo  '<script type="text/javascript">
                        alert("New Gallery Added successfully");
                        window.location.href = "gallery-details.php";
                        </script>';
                        unset($_POST);      
                    }else{
                      echo  '<script type="text/javascript">
                        alert("Something went wrong try again...");
                        </script>';
                    }  
                }catch(Exception $e){
                    $error=$e;
                }   
    }
?>

<div class="content-wrapper" style="background:white;">
        <div class="clearfix"></div>

<section class="content">
    <div class="row">
        <div class="col-xs-12">
            <div>
                <div class="box-header">
                    <h3 class="box-title"><b>Add New Banner Image: </b></h3>
                </div>
                <div class="box-body">
                    <div class="col-lg-12">
<!--<div id="loading-div">
<center><img src="assets/load.gif" style="10%"><br>
<strong class="blink_me">Loading Pls Wait... </strong></center>
</div>
<div id="success-div">
</div>-->
<div id="content-div">
                        <form action="" enctype="multipart/form-data" method="post" accept-charset="utf-8">
                            <div class="row">

                             <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="title">Title</label>                                    
                                    <input type="text" name="title"  id="title" value="" placeholder="Enter Title" class="form-control tip" required="required" />
                                
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="file">Choose The Gallery Image</label>                                    
                                    <input type="file" name="gallery_image"  id="photo" value=""  class="form-control tip" required="required" />
                                
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>

                            
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="file">Action</label><br>
                                    <input type="submit" id="add_category" name="add_gallery" value="Add Gallery"  class="btn btn-success" />
                                </div>
                            </div>
 
                             
                             
                        </div>
                        </form>
</div>



<div class="form-group" style="text-align:center;">
    <a href="gallery-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a>
    <a href="gallery.php"><button class="btn btn-warning" ><i class="fa fa-chevron-left"></i> Back to List</button></a>
 </div>
                    
                    <div class="clearfix"></div>
                </div>
            </div>
        </div>
    </div>
</section>

<style>
    table,td,th{
        padding:5px;
    }
    th{
        border: 1px solid black;
    }
    td{
        border: 1px solid black;
        border-style: dashed;
    }
</style>
<?php include "footer.php";?>

Zerion Mini Shell 1.0