ok
Direktori : /home2/selectio/www/caliberembedded.com/admin/ |
Current File : /home2/selectio/www/caliberembedded.com/admin/service-edit.php |
<?php include "header.php"; if(isset($_POST['update_occupation'])){ try{ $updated_date=date('Y-m-d H:i:s'); if(isset($_FILES['photo']) && $_FILES["photo"]["name"]!=""){ unlink($_POST['old_photo']); $extension = end(explode(".", $_FILES["photo"]["name"])); $image = rand(10,1000000000)."-".$date."-pdf." . $extension; $upload = move_uploaded_file($_FILES['photo']['tmp_name'], 'service/' . $image); $upload_image = 'service/' . $image; } else{ $upload_image=$_POST['old_photo']; } $statement = $pdo->prepare("UPDATE tbl_service SET image=?,title=?,description=?,service_type=? WHERE id=?"); $result=$statement->execute(array($upload_image,$_POST['title'],$_POST['description'],$_POST['service_type'],$_POST['ids'])); if($result){ $message = 'Service is updated successfully!'; unset($_POST); }else{ $warning="Something went wrong try again..."; } }catch(Exception $e){ $error=$e; } } $ids=$_GET['id']; $statement = $pdo->prepare("SELECT * FROM tbl_service e where e.id=".$ids); $statement->execute(); $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC); $totalData = $statement->rowCount(); if($totalData==1){ ?> <div class="content-wrapper"> <section class="content-header"> <h1>Edit Service</h1> <ol class="breadcrumb"> <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Edit Service</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"> <?php foreach($emp_data as $data){ ?> <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8"> <input type="hidden" name="ids" value="<?=$data['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> <img src="<?=$data['image']?>" style="width: 100%;"> <!--<a href="../<?=$data['image']?>" class="img-thumbnail" alt="" style="width: 100%;height:180px;">ee</a>--> <input type="file" name="photo" placeholder="Photo" class="form-control tip" id="photo" /> <input type="hidden" name="old_photo" value="<?=$data['image']?>" class="form-control tip" id="old_photo" /> <!--<input type="file" name="photo" value="" id="photo" placeholder="Upload Image" class="form-control tip"/>--> </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="category" required="required" /> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label class="control-label required" for="departement_id">Select Course Type</label> <select name="service_type" class="form-control select2" style="width:100%" id="event_type" required> <option value="0">Select Type</option> <option value="1" <?php if('1'==$data['service_type']){echo "selected";} ?>>SERVICES</option> <option value="2" <?php if('2'==$data['service_type']){echo "selected";} ?>>PROGRAM</option> <option value="3" <?php if('3'==$data['service_type']){echo "selected";} ?>>PRODUCTS</option> <option value="3" <?php if('4'==$data['service_type']){echo "selected";} ?>>INCUBATION CELL</option> </select> </div> </div> <div class="col-md-8"> <div class="form-group"> <label class="required" for="category">Description</label> <textarea type="text" name="description" value="" placeholder="Enter the Description" style="height: 50%;" class="form-control tip" id="category" required="required" /><?=$data['description']?></textarea> </div> </div> </div> <div class="form-group" style="text-align:center;"> <input type="submit" name="update_occupation" value="Update Splash Ads" class="btn btn-success" /> </form> <?php } ?> </div> </div> <div class="form-group" style="text-align:center;"> <?php echo "<a href=service-edit.php?id=".$ids."> <button class='btn btn-primary' > <i class='fa fa-refresh'></i> Reset Form</button></a>"; ?> <a href="service-list.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";?>