* 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.

On dos compatible systems like mswindows,
try opening ">$path/news.db" or ">$path\\news.db" instead.

-- 
Johannes Franken
 
Professional unix/network development
mailto:[EMAIL PROTECTED]
http://www.jfranken.de/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to