Results 1 to 3 of 3
Related
-
vertical drop down menu with 'sub drop downs' problem Forum: Javascript Forum
Replies: 2 -
How Do I Create A Music Drop-down List? Forum: HTML Forum
Replies: 1 -
Jump Menu covers drop down menu Forum: HTML Forum
Replies: 1 -
Drop down menu Forum: HTML Forum
Replies: 6
-
03-09-2005, 09:04 PM #1
create a drop down menu box in cgi
right here we go I have tracking software that i am allowed to custom and have done the following
the log file gets renamed everday to dayddmth.txt ie tue08jun.txt I now need to create a drop down box that will display all the files contained in a library on my server. so the stats can be checked at any time for any day.
so i need help with the drop down menu (or list box) and how to read the contents of a directory or list all the files with .txt or some such thing.
I have been to the forum from the guy who wrote the program but it seems he only answers certain questions or he hasn't got the time (what ever) this forum has been so helpful in the past would not have got this far without you.
thanks
George
-
03-10-2005, 08:05 AM #2
Hi,
I'm not much cop at Perl, but google found a dir listing script:
Code:#!/usr/bin/perl use File::Find; use File::Basename; @ARGV=qw(.) if not @ARGV; find(\&doit, @ARGV); sub doit { $fpath=$File::Find::name; $fname=basename($fpath); print "$fname $fpath\n"; }
If one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
03-10-2005, 01:37 PM #3
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum