ok

Mini Shell

Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/caliberembedded.com/admin/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/caliberembedded.com/admin/blog-edit.php

<?php  include "header.php";

if(isset($_POST['update_blog'])){
        try{
            
            $title = $_POST["title"];
            $date = $_POST["date"];
            $time = $_POST["time"];
            
            $date = date('Y-m-d h:i:s', time());
            
            
            if(isset($_FILES['photo']) && $_FILES["photo"]["name"]!=""){
                        unlink($_POST['old_photo']);
                        $extension = end(explode(".", $_FILES["photo"]["name"]));
                        $image = rand(10,1000000000)."-".$date."-image." . $extension;
                        $upload = move_uploaded_file($_FILES['photo']['tmp_name'], 'images/blog/' . $image);
                        $upload_image = 'images/blog/' . $image;   
                }
                else{
                    $upload_image=$_POST['old_photo'];
                }
$statement = $pdo->prepare("UPDATE tbl_blog SET image=?,title=?,date=?,time=? WHERE id=?");
$result=$statement->execute(array($upload_image,$title,$date,$time,$_POST['ids']));
                    
                    if($result){
                     echo  '<script type="text/javascript">
                        alert("Blog Updated successfully");
                        window.location.href = "blog.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_blog WHERE id=".$ids);
    $statement->execute();
    $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC);
    $totalData = $statement->rowCount();
    $date = date('d-m-Y');
if($totalData==1){
?>
<div class="content-wrapper" style="background:white;">
        <section class="content-header">
            <h4><b>Update Blog</b></h4>
            <ol class="breadcrumb">
                <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li>
                <li class="active">Update Blog</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" />

                        <?php foreach($emp_data as $data){ ?>
                        <div class="row">
                            <div class="col-md-4">
                                <div class="form-group">
                                     <label class="required" for="desgination">Gallery Image</label>       
                                     
                                     
                                     
                                    <?php if($emp_data[0]['image']==''){ ?>   
                                            <img src="upload/default-photo.png" class="img-thumbnail" alt="" style="width: 100%;height:180px;">
                                            
                                    <?php }else{ ?>
                                    
                                            <img src="<?=$data['image']?>" class="img-thumbnail" alt="" style="width: 100%;height:180px;"> 
                                            
                                    <?php } ?>
                                            
                                            
                                            <input type="file" name="photo" value="" id="photo" placeholder="Upload Image" class="form-control tip" />
                                            <input type="hidden" name="old_photo"  value="<?=$data['photo']?>" 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="category">Title</label>                                    
                                <input type="text" name="title" value="<?=$data['title']?>" placeholder="Enter the Title" class="form-control tip" id="title" />
                            </div>
                               </div> 
                                <div class="col-md-4">
                            <div class="form-group">
                                <label class="required" for="category">Date</label>                                    
                                <input type="date" name="date" value="<?=$data['date']?>" placeholder="Enter the Title" class="form-control tip" id="date"/>
                            </div>
                            </div>
                            <div class="col-md-4">
                            <div class="form-group">
                                <label class="required" for="category">Time</label>                                    
                                <input type="time" name="time" value="<?=$data['time']?>" placeholder="Enter the Title" class="form-control tip" id="time"  />
                            </div>
                            </div>
                            
                        </div>
                        
                       
                        <?php } ?>
                        <div class="form-group" style="text-align:center;">
                            <input type="submit" name="update_blog" value="Update Blog"  class="btn btn-success" />
                        </form>
                        </div>

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <?php echo "<a href=blog-edit.php?id=".$ids.">
                            <button class='btn btn-primary' >
                            <i class='fa fa-refresh'></i> Reset Form</button></a>"; ?> 
                                            
                             <a href="blog.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>
<script>
var photo = document.getElementById("photo");
photo.onchange = function() {
    console.log(photo);
    $('#photospan').text('');
    if(this.files[0].size > 5500000){
        $('#photospan').text('Photo Image Maximum 5 mb Allowed');
       alert("File is too big!");
       this.value = "";
    };
};

</script>

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

Zerion Mini Shell 1.0