Hi,
I have an admin script and i want all STAFF to have the ability to save
their files into their Home Computer on their C: or Floppy disk (A:) in case
the webserver closes or crashes. SO that someone has the Files.
Anthoy
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands
we assume you mean to save a file to the webserver's drive, not the
webserver client's drive.
On Monday, March 18, 2002, at 01:28 AM, Johannes Franken wrote:
> * anthony <[EMAIL PROTECTED]> [2002-03-18 09:45 +0100]:
>> Is it possible to save files from the webserver to the c: or a: drive?
>> o
* anthony <[EMAIL PROTECTED]> [2002-03-18 09:45 +0100]:
> Is it possible to save files from the webserver to the c: or a: drive?
> open(USER, ">$path\news.db") || die errorPage("Could not open
\n gets interpolated to a newline, which is legal for a filename but
hopefully not what you expected.
O
Hi,
Is it possible to save files from the webserver to the c: or a: drive?
i have a script that ask for the path to the drive.
$path. and my script does the following.
open(USER, ">$path\news.db") || die errorPage("Could not open
$dataDir/user.db: $!");
print USER @news;
close USER;
Regards,
A