kohjhjhصثقص5572lllllllldfgddfgصثقffgggfffgfgfgdfgdg
Ele57885fddfg872llll82ddfgdfgdfgdfgdfgfgfggffggfgfgfghgقفغفغفقhfg555434536
/
home3
/
oraclepublicscho
/
public_html
/
Oracle_Cpanel
/
Upload FileeE
HOME
<?php include 'header.php'; include 'config.php'; ?> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <main id="main" class="main"> <div class="pagetitle"> <h1>Photo Gallery</h1> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index">Home</a></li> <li class="breadcrumb-item">Photo Gallery</li> </ol> </nav> </div><!-- End Page Title --> <section class="section"> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Photo Gallery</h5> <?php if(isset($_POST['submit'])) { 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/" .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 gal(image) VALUES ('$filespat')"; $ins = mysqli_query($connect, $qry); if ($ins) { $count++; } } } if ($count) { ?> <script>alert('<?php echo $count; ?> Files Inserted Successfully'); window.location.replace("gal"); </script> <?php } else { ?> <script>alert('Something Went Wrong! Please try Again..'); window.location.replace("gal"); </script> <?php } } ?> <!-- Vertical Form --> <form class="row g-3" method="post" enctype="multipart/form-data"> <div class="col-12"> <label for="inputNanme4" class="form-label">Images</label> <input type="file" name="image[]" class="form-control" multiple="multiple" accept="image/jpg, image/jpeg, image/png,image/jfif" id="imageUpload" onchange="return fileValidation(this)" required> </div> <div class="text-left"> <button type="submit" name="submit" class="btn btn-primary">Submit</button> </div> </form><!-- Vertical Form --> </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Photo Gallery</h5> <table class="table datatable"> <thead> <tr> <th scope="col">#</th> <th scope="col">Image</th> <th scope="col">Edit</th> <th scope="col">Delete</th> </tr> </thead> <tbody> <?php $query = "SELECT * from gal "; $res_data = mysqli_query($connect,$query); if(mysqli_num_rows($res_data) > 0 ){ $num= $offset+1; while($row=mysqli_fetch_array($res_data)) { $id = $row['id']; ?> <tr> <th scope="row"><?php echo $num; ?></th> <td><img src="<?php echo $row['image']; ?>" height="100" width="100" style="background:black;" onerror="this.onerror=null;this.src='assets/img/noimage.jpg';"/> </td> <td><a href="edit_gal?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_gal?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 $num++; }} else{ ?> <tr><td align="center" colspan="12"><?php echo "No Data Available" ?></td></tr> <?php }?> </tbody> </table> <!-- End Table with stripped rows --> </div> </div> </div> </div> </section> </main><!-- End #main --> <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a> <script src="//cdn.ckeditor.com/4.9.2/standard/ckeditor.js"></script> <script type="text/javascript"> CKEDITOR.replace('descp'); </script> <!-- Vendor JS Files --> <script> function ConfirmDelete() { return confirm("Are you sure you want to delete?"); } </script> <script> function fileValidation(file){ var fileInput = file.value; var allowedExtensions = /(\.jpg|\.jpeg|\.png|\.jfif)$/i; if(!allowedExtensions.exec(fileInput)){ alert('Please upload file having extensions .jpeg/.jpg/.png/.jfif only.'); file.value = ''; file.focus(); return false; }else{ return true; } } </script> <script src="assets/vendor/apexcharts/apexcharts.min.js"></script> <script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="assets/vendor/chart.js/chart.umd.js"></script> <script src="assets/vendor/echarts/echarts.min.js"></script> <script src="assets/vendor/quill/quill.min.js"></script> <script src="assets/vendor/simple-datatables/simple-datatables.js"></script> <script src="assets/vendor/tinymce/tinymce.min.js"></script> <script src="assets/vendor/php-email-form/validate.js"></script> <!-- Template Main JS File --> <script src="assets/js/main.js"></script> </body> </html>