Re: [AOLSERVER] Retrieving files from form's...

2001-04-09 Thread Barry Books
amian Czupryn" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 09, 2001 5:13 AM Subject: Re: [AOLSERVER] Retrieving files from form's... Franclim Flix Bento wrote: Hello, First of all, thank you for your help. But I still have a problem. When I use ns_getform to get the for

Re: [AOLSERVER] Retrieving files from form's...

2001-04-09 Thread Franclim Flix Bento
To: [EMAIL PROTECTED] Subject: Re: [AOLSERVER] Retrieving files from form's... I had this problem on NT. If you remove enctype=multipart/form-data you get the fields but no file. I had to rewrite the file upload code to work on NT. It's currently pretty ugly and slow but it works. I'll post it somewhere

Re: [AOLSERVER] Retrieving files from form's...

2001-04-06 Thread Tuncay Baskan
Hi, form enctype='multipart/form-data' method=POST input type=file name=img1 input type=file name=img2 /form When you do a ns_getform in your handler, form set should have the following keys: img1.content-type img1.tmpfile img2.content-type img2.tmpfile You can get them with "ns_set get"