]]jkjjgdjffksdkdfdkasertertertrtetsadskdfgjdskfgj
במ12[aspddfasdaertertertertetghjghjsadasbvxcvxcv;'
/
home
/
u181040597
/
domains
/
jyotielevator.com
/
public_html
/
admin
/
Upload FileeE
HOME
<?php include("header.php"); include("aside.php"); if (isset($_POST['submit'])) { $total = count($_FILES['image']['name']); // Loop through each file for ($i = 0; $i < $total; $i++) { $image = $_FILES['image']['name'][$i]; $img_path = "./gallery/" . $image; // Insert each image into the database $query = "INSERT INTO `gallery`(`gallery`) VALUES ('$image')"; $sql = mysqli_query($connect, $query); if ($sql) { move_uploaded_file($_FILES['image']['tmp_name'][$i], $img_path); // echo "Image uploaded successfully.<br>"; } else { // echo "Failed to upload <br>"; } } } ?> <div class="container w-100 h-100 mt-5"> <button> <a class="btn btn-outline-primary" href="data_gallery.php">View Data</a></button> <h3 class="text-center">Product Gallery</h3> <div class="row"> <div class="col-md-9 mt-5"> <form method="post" enctype="multipart/form-data"> <div class="form-group"> <label for="exampleInputEmail1">Product Image:</label> <input type="file" class="form-control" name="image[]" id="exampleInputEmail1" aria-describedby="emailHelp" multiple> </div> <div class="form-check"> <input type="checkbox" class="form-check-input" id="exampleCheck1"> <label class="form-check-label" for="exampleCheck1">Check me out</label> </div> <button type="submit" class="btn btn-primary" name="submit">Submit</button> </form> </div> </div> </div> <?php include("footer.php"); ?>