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-edit.php

<?php  include "header.php";

if(isset($_POST['update-gallery'])){
        try{
            $title=$_POST['title'];
            $status=$_POST['status'];
            $date = date('Y-m-d h:i:s', time());
            // $month =date('m',strtotime($_POST['holiday_date']));
            // $year =date('Y',strtotime($_POST['holiday_date']));
            if(isset($_FILES['gallery_image']) && $_FILES["gallery_image"]["name"]!=""){
                        unlink($_POST['old_photo']);
                        $extension = end(explode(".", $_FILES["gallery_image"]["name"]));
                        $image = rand(10,1000000000)."-".$date."-image." . $extension;
                        $upload = move_uploaded_file($_FILES['gallery_image']['tmp_name'], '../upload/gallery/' . $image);
                        $upload_image = 'upload/gallery/' . $image;   
                }
                else{
                    $upload_image=$_POST['old_photo'];
                }
$statement = $pdo->prepare("UPDATE tbl_gallery SET title=?, gallery_images=?,status=?WHERE id=?");
$result=$statement->execute(array($title,$upload_image,$_POST['status'],$_POST['ids']));
                    
                    if($result){
                     echo  '<script type="text/javascript">
                        alert("Gallery Updated 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;
                }   
    }
    $ids=$_GET['id'];
    $statement = $pdo->prepare("SELECT * FROM tbl_gallery WHERE id=".$ids);
    $statement->execute();
    $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC);

?>
<div class="content-wrapper" style="background:white;">
        <section class="content-header">
            <h4><b>Update Gallery Image</b></h4>
            <ol class="breadcrumb">
                <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li>
                <li class="active">Update Gallery Image</li>            </ol>
        </section>
<section class="content">
    <div class="row">
        <div class="col-xs-12">
            <div>
                <div class="box-body">
                    <div class="col-lg-12">

                        <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8">
                                    <input type="hidden" name="ids" value="<?=$emp_data[0]['id']?>" class="form-control tip" id="id"  required="required" />

                        <div class="row">
                            <div class="col-md-4">
                                <div class="form-group">
                                     <label class="required" for="desgination">Gallery Image</label>                                    

                                            <img src="../<?=$emp_data[0]['gallery_images']?>" class="img-thumbnail" alt="" style="width: 100%;height:180px;"> 
                                            <input type="file" name="gallery_image"  placeholder="Photo"  class="form-control tip" id="photo"  />
                                            <input type="hidden" name="old_photo"  value="<?=$emp_data[0]['gallery_images']?>" class="form-control tip" id="old_photo"  />
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                             <div class="col-md-4">
                                <div class="form-group">
                                     <label class="required" for="desgination">Title</label>                                    
                                    <input type="text" name="title"  value="<?=$emp_data[0]['title']?>" class="form-control tip" id="old_photo"  />
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="status">Status</label>                                    
                                    <select name="status" id="status" class="form-control tip select2">
                                        <option value="1" <?php if($emp_data[0]['status']==1){ echo "selected";} ?>>Active</option>
                                        <option value="0" <?php if($emp_data[0]['status']==0){ echo "selected";} ?>>In-Active</option>
                                       
                                    </select>
                                </div>
                            </div>
                            
                        </div>
           
                        <div class="form-group" style="text-align:center;">
                            <input type="submit" name="update-gallery" value="Update Gallery Image"  class="btn btn-success" />
                        </form>
                        </div>

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <?php echo "<a href=gallery-edit.php?id=".$ids.">
                            <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>


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

Zerion Mini Shell 1.0