Jump to content

devjoe

New Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by devjoe

  1. Hello everyone, I’m experiencing issues on my client website. The images are not loading properly—some of them are cropped, and others only partially load. Additionally, the site’s loading speed is very slow, especially when there are multiple images on a page. Screenshot of images not properly loading is attached and for further I am attaching the website link to check and help. website: https://spiritualgleam.com/ I believe the issue might be related to my image handling in PHP. Here is the PHP code I am currently using to display the images: <?php // Function to get and display images from a folder function displayImages($folderPath) { $images = glob($folderPath . "*.{jpg,jpeg,png,gif}", GLOB_BRACE); foreach($images as $image) { // Outputting each image echo '<img src="'.$image.'" alt="Image" />'; } } ?> I suspect there might be an issue with how the images are being handled or cached. I’ve tried optimizing the image sizes, but the problem persists. The page load times are also quite high, and I’m unsure whether it’s because of the way the images are being processed or something else. Is there a way I can improve the image loading and the overall performance through PHP? Any suggestions on optimizing the image loading or other aspects that might be causing the slow speed would be appreciated. Thanks in advance!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.