korsygfhrfggfhfgfffgffg6655665dtggggggzangaiide
Elehhjhjjkjkfpf6df56fd65ffff
/
home2
/
sunpublicschools
/
public_html
/
SunShine_AdMin
/
Upload FileeE
HOME
<?php include 'header.php'; include 'config.php'; ?> <?php $com_qry = "SELECT * from h_vid "; $com_res = mysqli_query($connect,$com_qry); if(mysqli_num_rows($com_res) > 0 ) { $com_data = mysqli_fetch_assoc($com_res); } ?> <div class="content-wrapper"> <div class="page-title"> <div> <p><i class="fa fa-eye"></i> Home About Image</p> </div> </div> <div class="card"> <?php if(isset($_POST['submit'])) { $id = $_GET['id']; $target_dir = "images/h_vid/"; $target_file = $target_dir . strtolower(basename($_FILES["image"]["name"])); $allowed = array("image/jpeg", "image/gif", "image/png"); if (!in_array($target_file, $allowed)) { $error_message = 'Only jpg, gif, and png files are allowed.'; if (isset($_FILES['image']['errors']) == 1) { echo "Sorry, your file was not uploaded."; } else { move_uploaded_file($_FILES["image"]["tmp_name"], $target_file); $co_qery = "UPDATE h_vid set image = '$target_file' WHERE id = 1"; $co_res = mysqli_query($connect,$co_qery); if($co_res) { ?> <script> alert('Updated Successfully'); window.location.replace("h_vid.php"); </script> <?php } else { ?> <script> alert('Not Updated'); window.location.replace("h_vid.php"); </script> <?php } } } } ?> <form method="post" action="" enctype="multipart/form-data"> <div class="row"> <div class="col-md-4"> <label>Edit Image</label> <input type="file" name="image" accept="image/jpg, image/jpeg, image/png" id="imageUpload" onchange="return fileValidation(this)"> </div> </div> <br> <div class="row"> <div class="col-md-12"> <img src="<?php echo $com_data['image'];?>" height="300" width="300"> </div> </div> <br> <div class="row"> <div class="col-md-3"> <input type="submit" name="submit" class="btn btn-success" value="Update"> </div> </div> </form> </div> </div> <script> function fileValidation(file){ var fileInput = file.value; var allowedExtensions = /(\.jpg|\.jpeg|\.png)$/i; if(!allowedExtensions.exec(fileInput)){ alert('Please upload file having extensions .jpeg/.jpg/.png only.'); file.value = ''; file.focus(); return false; }else{ return true; } } </script> <script src="js/jquery-2.1.4.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/plugins/pace.min.js"></script> <script src="js/main.js"></script> <script src="//cdn.ckeditor.com/4.9.2/standard/ckeditor.js"></script>