#!/usr/bin/perl require "common.pl"; print "Content-type: text/html\n\n"; # get current and next picture $sCurrPic = join( "", common::File_read( "currpic.txt" ) ); @aPictureArray = common::File_read( "picture.txt" ); # not last picture or wrong input ? if( abs( $sCurrPic ) > 0 ) { $nCurrPic = abs( $sCurrPic ); $nPictureArrayLen = @aPictureArray; if( $nCurrPic < $nPictureArrayLen ) { $sPictureName1 = ( split( ";", @aPictureArray[ $nCurrPic ] ) )[ 1 ]; $sPictureName2 = ( split( ";", @aPictureArray[ $nCurrPic + 1 ] ) )[ 1 ]; } else { $sPictureName1 = ( split( ";", @aPictureArray[ $nCurrPic ] ) )[ 1 ]; $sPictureName2 = $sPictureName1; } } print ""; print ""; print "$$1"; print ""; print ""; print "

"; print "

"; print ""; print "";