ok
Mini Shell
<?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 news SET category=?,title=?,type=?,file=?,status=?,department_id=?,date=?,news_type=? WHERE id=?");
$result=$statement->execute(array($_POST['category'],$_POST['title'],$_POST['type'],$upload_image,$_POST['status'],$_POST['department_id'],$_POST['news_date'],$_POST['news_type'],$_POST['ids']));
if($result){
$message = 'News 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 news 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 News Details</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-sm-4">
<div class="form-group">
<label class="control-label" for="departement_id">Select Category</label>
<select name="category" id="role" class="form-control tip select2">
<option value="1" <?php if(1==$emp_data[0]['category']){echo "selected";} ?>>Latest News</option>";
<option value="2" <?php if(2==$emp_data[0]['category']){echo "selected";} ?>>Circular/Safety</option>";
<option value="3" <?php if(3==$emp_data[0]['category']){echo "selected";} ?>>Announcement</option>";
</select>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="control-label" for="departement_id">Select Department</label>
<select name="department_id" id="department_id" class="form-control tip select2">
<option value="">Selcet Department</option>
<?php
$conds='';
if($_SESSION['hrm']['id']!=1){ $conds=' and id in ('.$_SESSION['hrm']['id'].')';}
$statement = $pdo->prepare("SELECT * FROM `tbl_departement` where status=1 $conds");
$statement->execute();
$location_result = $statement->fetchAll(PDO::FETCH_ASSOC);
foreach ($location_result as $result) { ?>
<option value="<?=$result['id']?>" <?php if($result['id']==$emp_data[0]['department_id']){ echo "selected";} ?> ><?=$result['departement']?></option>";
<?php }?>
</select>
</div>
</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']?>" placeholder="Enter The Title" class="form-control tip" id="title" required="required" />
</div>
</div>
<div class="col-sm-4" id="type">
<div class="form-group">
<label class="control-label" for="departement_id">Select Type</label>
<select name="type" class="form-control select2" style="width:100%" id="type_id">
<option value="1" <?php if(1==$emp_data[0]['type']){echo "selected";} ?>>PDF</option>";
<option value="2" <?php if(2==$emp_data[0]['type']){echo "selected";} ?>>Normal</option>";
</select>
</div>
</div>
<div class="col-md-4" id="upload">
<div class="form-group">
<label for="file">Upload PDF File</label>
<?php if($emp_data[0]['photo']==''){ ?>
<img src="upload/default-photo.png" class="img-thumbnail" alt="" style="width: 100%;height:180px;">
<?php }else{ ?>
<embed src="<?=$data['photo']?>" width="300px" height="180px" />
<?php } ?>
<input type="file" name="photo" placeholder="Photo" class="form-control tip" id="photo" />
<input type="hidden" name="old_photo" value="<?=$data['photo']?>" class="form-control tip" id="old_photo" />
</div>
</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($data['status']==1){ echo "selected";} ?>>Active</option>
<option value="0" <?php if($data['status']==0){ echo "selected";} ?>>De-Active</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label class="required" for="news_type">News Type</label>
<select name="news_type" id="news_type" class="form-control tip select2">
<option value="1" <?php if($data['news_type']==1){ echo "selected";} ?>>Public</option>
<option value="2" <?php if($data['news_type']==2){ echo "selected";} ?>>Private</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label class="required" for="file">News Add Date</label>
<input type="date" name="news_date" value="<?=$data['date']?>" placeholder="Enter The News Add Date" class="form-control tip" id="news_date" required="required" />
</div>
</div>
</div>
<?php } ?>
<div class="form-group" style="text-align:center;">
<input type="submit" name="Update_News_Details" value="Update News Details" class="btn btn-success" />
</form>
</div>
</div>
<div class="form-group" style="text-align:center;">
<?php echo "<a href=news-edit.php?id=".$ids.">
<button class='btn btn-primary' >
<i class='fa fa-refresh'></i> Reset Form</button></a>"; ?>
<a href="news.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>
window.onload = function() {
var type_id = $("#type_id").val();
console.log('value'+type_id);
if(type_id==0){
$("#upload").hide();
}else if(type_id==1){
$("#upload").show();
}else{
$("#upload").hide();
}
};
</script>
<?php } include "footer.php";?>
Zerion Mini Shell 1.0