Need Java or PHP script script to display random images with hidden list..

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ANAL PASTE
    Confirmed User
    • Mar 2006
    • 9070

    #1

    Need Java or PHP script script to display random images with hidden list..

    Is there way to display random picture from txt list or simple java script that hides the list

    so lets say I have image.txt with
    img1.jpg
    img2.jpg and so on....
    is it possible?
    SEE YOU IN VALHALLA, BRO
  • pstation
    Confirmed User
    • Jul 2003
    • 1135

    #2
    yes

    1324

    Comment

    • ANAL PASTE
      Confirmed User
      • Mar 2006
      • 9070

      #3
      Originally posted by pstation
      yes

      1324
      you must be comedian
      SEE YOU IN VALHALLA, BRO

      Comment

      • Fetish Gimp
        Confirmed User
        • Feb 2005
        • 1699

        #4
        Originally posted by ANAL PASTE
        Is there way to display random picture from txt list or simple java script that hides the list

        so lets say I have image.txt with
        img1.jpg
        img2.jpg and so on....
        is it possible?
        http://php.resourceindex.com/Complet...Random_Images/

        Although naming the images img1.jpg img2.jpg kinda defeats the purpose as it'd be pretty easy to surf all the images once you know the naming convention.
        Strapon Seduction - femdom blog | Twitter

        Comment

        • ANAL PASTE
          Confirmed User
          • Mar 2006
          • 9070

          #5
          Originally posted by Fetish Gimp
          http://php.resourceindex.com/Complet...Random_Images/

          Although naming the images img1.jpg img2.jpg kinda defeats the purpose as it'd be pretty easy to surf all the images once you know the naming convention.
          thank you very much
          SEE YOU IN VALHALLA, BRO

          Comment

          • Bro Media - BANNED FOR LIFE
            MOBILE PORN: IMOBILEPORN
            • Jan 2004
            • 16502

            #6
            make the list part of the php... example

            <?php
            $img[1] = "images/blah.jpg";
            $img[2] = "images/blah2.jpg";

            $r = rand(1, count($img));

            echo "<img src=\"" . $img[$r] . "\">";
            ?>

            Comment

            Working...