korsygfhrfggfhfgfffgffg6655665dtggggggzangaiide
Elehhjhjjkjkfpf6df56fd65ffff
/
home2
/
sunpublicschools
/
public_html
/
SunShine_AdMin
/
Upload FileeE
HOME
<?php include 'header.php'; include 'config.php'; ?> <?php $id = $_GET['id']; $com_qry = "SELECT * from gal WHERE id = '$id'"; $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> <?php echo $com_data['title'];?> Gallery Images</p> </div> </div> <div class="card"> <?php if(isset($_POST['submit'])) { $id = $_GET['id']; if(count($_FILES['image']['name']) > 0){ //Loop through each file for($i=0; $i<count($_FILES['image']['name']); $i++) { //Get the temp file path $tmpFilePath = $_FILES['image']['tmp_name'][$i]; //Make sure we have a filepath if($tmpFilePath != ""){ //save the filename $shortname = $_FILES['image']['name'][$i]; $imageFileType = strtolower(pathinfo($shortname,PATHINFO_EXTENSION)); if(($imageFileType =='jpg') || ($imageFileType =='jpeg') || ($imageFileType =='png') || ($imageFileType =='jfif')) { $temp = explode(".", $shortname); $filePath = "images/gallery/gal/" .substr(time(), -5).$i.".".end($temp); //Upload the file into the temp dir if(move_uploaded_file($tmpFilePath, $filePath)) { $files[] = $shortname; $filespaths[] = $filePath; //insert into db //use $shortname for the filename //use $filePath for the relative url to the file } } } } } //show success message if(is_array($filespaths)){ $count = 0; foreach($filespaths as $filespat){ $qry = "INSERT INTO g_gal(image,sub_id) VALUES ('$filespat','$id')"; $ins = mysqli_query($connect, $qry); if ($ins) { $count++; } } } if ($count) { ?> <script>alert('<?php echo $count; ?> Files Inserted Successfully'); window.location.replace("add_gal.php?id=<?php echo $com_data['id'];?>"); </script> <?php } else { ?> <script>alert('Something Went Wrong! Please try Again..'); window.location.replace("add_gal.php?id=<?php echo $com_data['id'];?>"); </script> <?php } } ?> <form action="" method="post" enctype="multipart/form-data"> <div class="row"> <div class="col-md-4"> <div class="col-md-4"> <label>Add Image</label> <input type="file" required name="image[]" multiple="multiple" accept="image/jpg, image/jfif, image/jpeg, image/png" id="imageUpload" onchange="return fileValidation(this)"> </div> </div> </div> <br> <div class="row"> <div class="col-md-3"> <input type="submit" name="submit" class="btn btn-success" value="Submit"> </div> </div> </form> </div> <div class="card"> <div class="row"> <div class="col-md-12"> <p style="font-weight: bold;color: #1ec351;"> <?php echo $com_data['w_title'];?> Gallery List</p> </div> </div> <div class="row"> <div class="table-responsive"> <table class="table table-bordered table-striped"> <tr> <th >Image</th> <th >Edit</th> <th >Delete</th> </tr> <?php $start=0; $limit=10; if(isset($_GET['id'])) { $id=$_GET['id']; $start=($id-1)*$limit; } else { $id=1; $start=($id-1)*$limit; } $query = "SELECT * from g_gal WHERE sub_id = '$id'"; $result = mysqli_query($connect,$query); while($row = mysqli_fetch_array($result)) { ?> <tr> <td><img src="<?php echo $row['image']; ?>" height="100" width="100" style="background:black;" onerror="this.onerror=null;this.src='images/noimage.jpg';"/> </td> <td> <a href="edit_gallery.php?id=<?php echo $row['id'];?>"><button data-toggle="tooltip" title="Edit" class="btn btn-green btn-xs"><i class="fa fa-edit"></i></button></a> </td> <td> <a href="delete_gallery.php?id=<?php echo $row['id'];?>"><button data-toggle="tooltip" title="Delete" Onclick="return ConfirmDelete()" class="btn btn-danger btn-xs"><i class="fa fa-trash"></i></button></a> </td> </tr> <?php } ?> </table> </div> </div> </div> </div> <script> function ConfirmDelete() { return confirm("Are you sure you want to delete?"); } </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> <script type="text/javascript"> CKEDITOR.replace('descp'); CKEDITOR.replace('descp2'); CKEDITOR.replace('descp3'); </script> <script> function fileValidation(file){ var fileInput = file.value; var allowedExtensions = /(\.jpg|\.jfif|\.jpeg|\.png)$/i; if(!allowedExtensions.exec(fileInput)){ alert('Please upload file having extensions .jpeg/.jfif/.jpg/.png only.'); file.value = ''; file.focus(); return false; }else{ return true; } } </script>