ok

Mini Shell

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

<?php  include "header.php";

if(isset($_POST['update_faculty'])){
        try{
            
            error_log('update_faculty');
            
            $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['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/faculty/' . $image);
                        $upload_image = 'images/faculty/' . $image;   
                }
                else{
                    $upload_image=$_POST['old_photo'];
                }
$statement = $pdo->prepare("UPDATE tbl_faculty SET image=?,name=?,designation=? WHERE id=?");
$result=$statement->execute(array($upload_image,$_POST['name'],$_POST['designation'],$_POST['ids']));
                    
                    if($result){
                        $message = 'Faculty is updated successfully!';
                        unset($_POST);      
                    }else{
                        $warning="Something went wrong try again...";
                    }  
                }catch(Exception $e){
                    $error=$e;
                }    
    }
    $ids=$_GET['id'];
    $statement1 = $pdo->prepare("SELECT * FROM tbl_faculty e where e.id=".$ids);
    error_log("SELECT * FROM tbl_faculty e where e.id=".$ids);
    $statement1->execute();
    $emp_data = $statement1->fetchAll(PDO::FETCH_ASSOC);
    $totalData = $statement1->rowCount();
        error_log('it is working'.$emp_data['0']['name']);

if($totalData==1){
?>
<div class="content-wrapper">
        <section class="content-header">
            <h1>Edit Faculty</h1>
            <ol class="breadcrumb">
                <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li>
                <li class="active">Edit Faculty</li>            </ol>
        </section>


        <div class="col-lg-12 alerts">
            <div id="custom-alerts" style="display:none;">
                <div class="alert alert-dismissable">
                    <div class="custom-msg"></div>
                </div>
            </div>
            <?php if ($error)  { ?>
            <div class="alert alert-danger alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-ban"></i> Error</h4>
                <?= $error; ?>
            </div>
            <?php $error=0;} if ($warning) { ?>
            <div class="alert alert-warning alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-warning"></i> warning</h4>
                <?= $warning; ?>
            </div>
            <?php  $warning=0;} if ($message) { ?>
            <div class="alert alert-success alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4>    <i class="icon fa fa-check"></i> Success</h4>
                <?= $message; ?>
            </div>
            <?php $message=0; } ?>
        </div>
        <div class="clearfix"></div>







<section class="content">
    <div class="row">
        <div class="col-xs-12">
            <div class="box box-primary">
                <div class="box-header">
                    <h3 class="box-title">Please fill in the information below</h3>
                </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" />

                                                                 
                        <div class="row">
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label for="file" class="required">Upload Image</label>     
                                    
                                    <?php if($emp_data[0]['image']==''){ ?>   
                                        <img src="images/no-image.jpg" class="img-thumbnail" alt="" style="width: 100%;height:180px;">
                                                
                                                <?php }else{ ?>
                                            <img src="<?=$emp_data[0]['image']?>" class="img-thumbnail" alt="" style="width: 100%;height:180px;"> <?php } ?>
                                            <input type="file" name="photo"  placeholder="Photo"  class="form-control tip" id="photo"  />
                                            <input type="hidden" name="old_photo"  value="<?=$emp_data['image']?>" class="form-control tip" id="old_photo"  />
                                            
                                            
                                    <!--<input type="file" name="photo" value="" id="photo" placeholder="Upload Image" class="form-control tip" required/>-->
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                            
                            <div class="col-md-4">
                            <div class="form-group">
                                <label class="required" for="category">Name</label>                                    
                                <input type="text" name="name" value="<?=$emp_data[0]['name']?>" placeholder="Enter the Title" class="form-control tip" id="name"  required="required" />
                            </div>
                               </div> 
                            <div class="col-md-4">
                            <div class="form-group">
                                <label class="required" for="category">Designation</label>                                    
                                <input type="text" name="designation" value="<?=$emp_data[0]['designation']?>" placeholder="Enter the Title" class="form-control tip" id="designation"  required="required" />
                            </div>
                            </div>
                        </div>
                        

                        <div class="form-group" style="text-align:center;">
                            <input type="submit" name="update_faculty" value="Update Faculty"  class="btn btn-success" />
                        </form>
                        </div>

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <?php echo "<a href=faculty-edit.php?id=".$ids.">
                            <button class='btn btn-primary' >
                            <i class='fa fa-refresh'></i> Reset Form</button></a>"; ?> 
                                            
                             <a href="faculty.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 > 1048576){
        $('#photospan').text('Photo Image Maximum 1 mb Allowed');
       alert("File is too big!");
       this.value = "";
    };
};

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

Zerion Mini Shell 1.0