Site Navigation Code

  Home arrow Site Navigation Code arrow Simply image viewer script
SITE NAVIGATION CODE

Simply image viewer script
By: Codewalkers
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 15
    2005-08-20

    Table of Contents:

     
     

    SEARCH CODEWALKERS

    TOOLS YOU CAN USE

    advertisement
    This script reads images in your dir and displays first one with next prev buttons. No work needed just drop in dir. Also gives thumbnail option and links at bottom to each image in the dir

    By : eltreno

    <?php

    //=========================================
    //
    // Author: Trent Williams
    // Date: 19 Aug 2005


    // EXPLAINATION
    //
    // A simply script to drop in any dir to display next prev buttons and current image for all your images in that dir with extentions you allow
    // Uses id parameter to know what image to show next else it will show first image
    // Also a number list at bottom page to go to any image, alt text displays image name

    // change the colours in the styles in the html body






    //which dir
    $d = dir(".");

    //read thru and
    while (false !== ($entry = $d->read())) {
    //allow extensions here
    //|| preg_match("/(\.bmp$)/i", $entry)
    //|| preg_match("/(\.jpeg$)/i", $entry)

    if (preg_match("/(\.gif$)/i", $entry) || preg_match("/(\.jpg$)/i", $entry)){
    $pics[] = $entry;
    }

    }
    $d->close();


    //================
    //total images count
    $numPics = count($pics);



    //================
    //picture in array to show on this page
    $thispic = 0;
    if (is_numeric($_GET['id'])){
    $thispic = $_GET['id'];
    }
    $thispicDisplay = $thispic + 1;



    //================
    //img tag for current image
    $thisImage = '<img src="' . $pics[$thispic] . '" alt="' . $pics[$thispic] . '" />';



    //======================
    // START set thumbnails on or off

    //comment this section out if you don't want thumbs to show at all

    $showThumbs = 5;//number of thums to show
    $thumbsList = '';
    $thumburl = '';
    if ($_GET['thumb'] == 'yes'){
    //read thumb param to url if exists
    $thumburl = '&amp;thumb=yes';

    for ($i=0;$i<$showThumbs;$i++){
    if ($thispic + $i + 1 < $numPics){
    $currThumb = $thispic + $i + 1;
    $thumbsList .= '<a href="' . $_SERVER['PHP_SELF'] . '?id=' . $currThumb . $thumburl . '" title="' . $pics[$currThumb] . '"><img src="' . $pics[$currThumb] . '" alt="' . $pics[$currThumb] . '" height="100" width="100" border="0" /></a>&nbsp;&nbsp;&nbsp;';
    }
    }
    $onOff ='<a class="thumbs" href="' . $_SERVER['PHP_SELF'] . '?id=' . $thispic . '">Turn Thumbnails Off</a>';
    } else {
    $onOff ='<a class="thumbs" href="' . $_SERVER['PHP_SELF'] . '?id=' . $thispic . '&amp;thumb=yes">Turn Thumbnails On</a>';
    }

    // END set thumbnails on or off





    //prev button

    $prevurl = ' <span class="highlighted">First Picture</span>';
    if ($thispic > 0){
    $prev = $thispic - 1;
    $prevurl = '<a href="' . $_SERVER['PHP_SELF'] . '?id=' . $prev . $thumburl . '" title="' . $pics[$prev] . '">Previous picture</a>';
    }




    //next button

    $nexturl = ' <span class="highlighted">Last Picture</span>';
    if ($thispic < ($numPics - 1)){
    $next = $thispic + 1;
    $nexturl = '<a href="' . $_SERVER['PHP_SELF'] . '?id=' . $next . $thumburl . '" title="' . $pics[$next] .'">Next picture</a>';
    }



    //=======================
    // string of all pics url's
    $urlarray = '';
    for ($i=0;$i<count($pics);$i++){
    //highlign pic you are on
    $j = $i + 1;

    if ($i != $thispic){

    $urlarray .= '<a href="' . $_SERVER['PHP_SELF'] . '?id=' . $i . $thumburl .'" title="' . $pics[$i] . '">' . $j .'</a> ';
    } else {
    $urlarray .= ' <span class="highlighted">' . $j . '</span> ';
    }


    }







    ?>
    <?php echo '<?xml version="1.0" encoding="iso-8859-1"?>' . "\n"; ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title><?=$pics[$thispic]?></title>
    <meta name="Author" content="Trent Williams" />
    <style type="text/css">
    *{margin:0px;}
    html, body{color:#000; background-color:#000;}
    .borders {background:#DBDE5C; border:2px solid #DF1C11; padding:10px; width:100%; float:left; font-family:arial, helvetica, sans-serif; font-size:85%;}
    .content {padding:10;}
    a{color:#000;text-decoration:none; font-weight:bold;}
    a:hover{text-decoration:underline;}
    .highlighted {color:#DF1C11; font-weight:bold;}

    a.thumbs {color:#DBDE5C;text-decoration:none; font-weight:bold;}

    </style>
    </head>

    <body>


    <table cellpadding="0" cellspacing="10" border="0">
    <tr>
    <td>

    <div class="borders"><?=$prevurl?>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<?=$nexturl?>&nbsp;&nbsp;&nbsp;Picture number: <strong><?=$thispicDisplay?></strong> &nbsp;&nbsp;Picture name: <strong><?=$pics[$thispic]?></strong></div>




    <div class="content"><center><?=$thisImage?></center></div>

    <div class="content"><?=$onOff?><center><?=$thumbsList?></center></div>

    <div class="borders"><?=$urlarray?></div>


    </td>
    </tr>
    </table>


    </body>
    </html>
    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More Site Navigation Code Articles
    More By Codewalkers

    blog comments powered by Disqus

    SITE NAVIGATION CODE ARTICLES

    - Simple Menu System
    - Simply image viewer script
    - Simple File Lister
    - Dynamic Error Pages
    - BSoftEditor
    - Yahoo Status
    - Page numbers
    - PHP Search Navigator 1.0
    - Simple Page Navigation
    - An easy page browser ( prev 6 7 8 9 10 next )
    - AutoIndex PHP Script (Directory Indexer)
    - Bs_HtmlNavigation (Navigation and Sitemap cl...
    - Another Paging with Stage
    - Website Navigation via PHP
    - MySQL Paging Class

    Developer Shed Affiliates

     



    © 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap