![]() |
Re: OT:Is this the right forum for HTML help?
here is how you do that in php
this file will read everything in the directory and the person can right click and save as just put this as a file in the directory and then call it download.php or something and get the person to link to that. you can add stuff to it etc... to make it all pretty like 1060781471.zip |
Re: OT:Is this the right forum for HTML help?
installing php is easy... php.net
|
Re: OT:Is this the right forum for HTML help?
I don't want them to be able to download from the list.
The CGI upload form works great. the do it yourself download form works with fixed file names. What I want is a table with the files in the turnfiles directory, and a way to get an automatic download of the only file in the gamefile directory when you press the download current gameturn icon This is how it looks now: http://ruatha.homelinux.org [ August 13, 2003, 14:37: Message edited by: Ruatha ] |
Re: OT:Is this the right forum for HTML help?
Just a way to get all filenames in a directory into a variable would be very helpful.
|
Re: OT:Is this the right forum for HTML help?
Well, the simplest solution would be for you to just name the current .zip file without the turn number. If the latest file is always the same name the download link never changes. You just overwrite it when you upload it for the players to get.
Geoschmo |
Re: OT:Is this the right forum for HTML help?
Quote:
|
Re: OT:Is this the right forum for HTML help?
sorry ruthia i do not know perl at all
|
Re: OT:Is this the right forum for HTML help?
Quote:
|
Re: OT:Is this the right forum for HTML help?
Just a way to get all filenames in a directory into a variable would be very helpful.
In perl, just use opendir and readir thus; $directory = '/tmp/files'; @files = (); opendir (DIR, $directory); while ($file = readdir(DIR)) { push @files, $file; } closedir(DIR); and @files has your list of files. [ August 13, 2003, 16:30: Message edited by: gravey101 ] |
Re: OT:Is this the right forum for HTML help?
Thanx, will test this!
|
All times are GMT -4. The time now is 04:16 AM. |
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.