Results 1 to 5 of 5

Thread: URGENT !! PHP script needed to preload ALL images in a given folder...

  1. #1

    Thread Starter
    Fanatic Member VisionIT's Avatar
    Join Date
    Nov 2002
    Location
    Workin'...
    Posts
    718

    URGENT !! PHP script needed to preload ALL images in a given folder...

    Anyone that can solve this needs a medal!!!

    I have a standard Java-style image preloader running at the moment... but it's hardly ideal.

    It just has an array where you manually add each image you want to preload. It takes too long to do, so is there a PHP/CGI script which AUTOMATICALLY preload's all the images in a certain folder?

    So instead of... "images/1.jpg","images/2.jpg...etc"
    I could... "images/*.jpg"

    Thank you in advance.

    Regards,

    Paul.

  2. #2
    Frenzied Member
    Join Date
    Nov 1999
    Posts
    1,337
    no, php is serverside so it can't preload. you have javascript preloading and that is all you can do.

    harldy ideal, that is the only choice you have.

  3. #3
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    What you can do is create a script to read all files in the directory and output the javascript code.

    This is off the top of my head:

    Code:
    <?php
    if ($handle = opendir('/home/your_site/images')) {
        while (false !== ($file = readdir($handle))) { 
            if (!strstr($file, ".jpg") === false) {
                echo "JavaScript stuff with file name here.";
            }
        }
    
        closedir($handle); 
    }
    ?>
    That's the best I could come up with off the top of my head. See the manual if you need more help.
    My evil laugh has a squeak in it.

    kristopherwilson.com

  4. #4

    Thread Starter
    Fanatic Member VisionIT's Avatar
    Join Date
    Nov 2002
    Location
    Workin'...
    Posts
    718
    We have a genius....

    Thanks M8.... i'll see if I can get that working. I'll let you know.

    Regards,

    Paul.

  5. #5
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    Let me know if you need anymore help.
    My evil laugh has a squeak in it.

    kristopherwilson.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width