ok
Direktori : /proc/thread-self/root/proc/thread-self/root/home2/selectio/www/saew.in/admin/ |
Current File : //proc/thread-self/root/proc/thread-self/root/home2/selectio/www/saew.in/admin/banner-edit.php |
<?php include "header.php"; if(isset($_POST['Update_News_Details'])){ try{ 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'], 'upload/' . $image); $upload_image = 'upload/' . $image; } else{ $upload_image=$_POST['old_photo']; } $statement = $pdo->prepare("UPDATE banner SET image_name=?,image=?,status=? WHERE id=?"); $result=$statement->execute(array($_POST['image_name'],$upload_image,1,$_POST['ids'])); if($result){ $message = 'Image Name 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 banner e where e.id=".$ids); $statement->execute(); $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC); $totalData = $statement->rowCount(); if($totalData==1){ ?> <div class="content-wrapper" style="background:white;"> <section class="content-header"> <h4><b>Update News Details</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> <div class="col-lg-12 alerts"><br> <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> <div class="box-body"> <div class="col-lg-12"> <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8"> <?php foreach($emp_data as $data){ ?> <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">Image Name</label> <input type="text" name="image_name" value="<?=$emp_data[0]['image_name']?>" placeholder="Enter The Title" class="form-control tip" id="image_name" required="required" /> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label class="control-label required" for="departement_id">Select Department</label> <select name="department" class="form-control select2" style="width:100%" id="department" required> <option value="0" <?php if(0==$emp_data[0]['type']){echo "selected";} ?>>Select The Department</option> <option value="1" <?php if(1==$emp_data[0]['type']){echo "selected";} ?>>CIVIL</option> <option value="2" <?php if(2==$emp_data[0]['type']){echo "selected";} ?>>EEE</option> <option value="3" <?php if(3==$emp_data[0]['type']){echo "selected";} ?>>MECH</option>"; <option value="4" <?php if(4==$emp_data[0]['type']){echo "selected";} ?>>CSE</option>"; <option value="5" <?php if(5==$emp_data[0]['type']){echo "selected";} ?>>ECE</option>"; <option value="6" <?php if(6==$emp_data[0]['type']){echo "selected";} ?>>BME</option>"; <option value="7" <?php if(7==$emp_data[0]['type']){echo "selected";} ?>>IT</option>"; <option value="8" <?php if(8==$emp_data[0]['type']){echo "selected";} ?>>AI & DS</option>"; </select> </div> </div> <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" placeholder="Photo" class="form-control tip" id="photo" /> <input type="hidden" name="old_photo" value="<?=$data['image']?>" class="form-control tip" id="old_photo" /> </div> <span style="color: red;" id="photospan"></span> </div> </div> <?php } ?> <div class="form-group" style="text-align:center;"> <input type="submit" name="Update_News_Details" 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="banner.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";?>