in reply to Random Imaging
#!c:\perl\bin\perl.exe -w use strict; my @imgArray = ( { file => "./pics/blink.gif", h => 320, w => 240, title => "Blink 128 (1)", }, { file => "./pics/sum41.gif", h => 316, w => 500, title => "Sum 41", }, #and so on ... ); #dont use srand, unless you want a PREDICTABLE series of numbers every + time! my $num = rand(@imgArray); my $img = $imgArray[$num]; print "Content-type: text/html\n\n"; print <<HTML; <html> <head> <title></title> </head> <body bgcolor=lightgrey> Index: $num <br>Image: $$img{file} <br> <br> <center>Random imaging with Perl.....</center> <br> <br> <center> <img src="$$img{file}" border=1 height="$$img{h}" width="$$img{w}"> <br> <br> <font>$$img{title}</font> </center> </body> </html> HTML
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Random Imaging
by freddo411 (Chaplain) on Aug 01, 2003 at 17:41 UTC | |
by appex32 (Initiate) on Aug 01, 2003 at 19:16 UTC | |
by freddo411 (Chaplain) on Aug 01, 2003 at 21:30 UTC | |
Re: Re: Random Imaging
by appex32 (Initiate) on Aug 01, 2003 at 15:40 UTC | |
by alienhuman (Pilgrim) on Aug 01, 2003 at 17:13 UTC | |
by appex32 (Initiate) on Aug 01, 2003 at 18:46 UTC | |
by appex32 (Initiate) on Aug 04, 2003 at 15:29 UTC | |
by Cine (Friar) on Aug 01, 2003 at 15:52 UTC | |
by appex32 (Initiate) on Aug 01, 2003 at 15:58 UTC | |
by Cine (Friar) on Aug 01, 2003 at 16:04 UTC | |
by appex32 (Initiate) on Aug 01, 2003 at 17:32 UTC | |
| |
Re: Re: Random Imaging
by appex32 (Initiate) on Aug 04, 2003 at 16:04 UTC | |
by Cine (Friar) on Aug 04, 2003 at 19:54 UTC |