Special Product Offer from Revived Wire Media. Buy php Website Backup with any other product and SAVE $5!
  Our web design and company branding Pixel Blender is live! PixelBlender.net  

Got Weather?
Go here for more Our Yahoo! Weather Widget has web 2.0 reflections, displays multiple locations, and scrolls using jQuery or Mootools!

Green Hosting by HostGator
Bookmark to: Linkarena Bookmark to: Folkd Bookmark to: Digg Bookmark to: Del.icio.us
Bookmark to: Facebook Bookmark to: Reddit Bookmark to: Jumptags Bookmark to: Simpy
Bookmark to: Slashdot Bookmark to: StumbleUpon Bookmark to: Propeller Bookmark to: Furl
Bookmark to: Yahoo Bookmark to: Spurl Bookmark to: Google Bookmark to: Blinklist
Bookmark to: Blogmarks Bookmark to: Newsvine Bookmark to: Blinkbits Bookmark to: Ma.Gnolia

Christian Dating - Revived Singles - Free Promo SIGNUP Special NOW!

RevivedMe.com - Christian T-Shirts, Christian Apparal and Christian Gifts!

Revived Music Christian Music News, Christian Festivals, Christian Concerts, Praise & Worship info and more!

MaryElise.org

Scripts - php Random Image Displayer    

  Code Source Code  
<?php
    $folder = '.';
    $extList = array();
    $extList['gif'] = 'image/gif';
    $extList['jpg'] = 'image/jpeg';
    $extList['jpeg'] = 'image/jpeg';
    $extList['png'] = 'image/png';
$img = null;
if (substr($folder,-1) != '/') {
    $folder = $folder.'/';
}
if (isset($_GET['img'])) {
    $imageInfo = pathinfo($_GET['img']);
    if (
        isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
        file_exists( $folder.$imageInfo['basename'] )
) {
    $img = $folder.$imageInfo['basename'];
}
} else {
    $fileList = array();
    $handle = opendir($folder);
    while ( false !== ( $file = readdir($handle) ) ) {
        $file_info = pathinfo($file);
        if (
            isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
            $fileList[] = $file;
        }
    }
    closedir($handle);
    if (count($fileList) > 0) {
        $imageNumber = time() % count($fileList);
        $img = $folder.$fileList[$imageNumber];
    }
}
if ($img!=null) {
    $imageInfo = pathinfo($img);
    $contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
    header ($contentType);
    readfile($img);
} else {
    if ( function_exists('imagecreate') ) {
        header ("Content-type: image/png");
        $im = @imagecreate (100, 100)
            or die ("Cannot initialize new GD image stream");
        $background_color = imagecolorallocate ($im, 255, 255, 255);
        $text_color = imagecolorallocate ($im, 0,0,0);
        imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
        imagepng ($im);
        imagedestroy($im);
    }
}
?>

 Code Installation Installation  
  1. Copy/paste the code above
  2. Name the file random.php
  3. Place in the same directory in which your images reside
  4. Reference random.php in your src. For instance:
    <img src="image_path/random.php"    ...>

Hotscripts.com

Scripts.com

ScriptSearch.com

36