RE: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-09 Thread Richard Lynch
On Sun, May 8, 2005 9:22 pm, Murray @ PlanetThoughtful said: As others have suggested, using an ftp client application is one way to handle it, however, users being users, the feedback has been Why do we need to upload the files via an ftp client, *then* go to the web application and attach

Re: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-09 Thread Burhan Khalid
Murray @ PlanetThoughtful wrote: [ snipped ] when u upload it name it dynamiccaly by appending date and time before the file name like this 2005050501010-filename.jpg Hi, yes, I'm already doing this. Conflict of filename isn't my issue -- it's whether or not the file should be uploaded at all, in

RE: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-09 Thread Jared Williams
Hi All, I need to implement the ability to ftp upload files from client machines via a form in a web application I'm developing. From reading the PHP help, all I can find to perform this is the POST method for handling file uploads

[PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-08 Thread Murray @ PlanetThoughtful
Hi All, I need to implement the ability to ftp upload files from client machines via a form in a web application I'm developing. From reading the PHP help, all I can find to perform this is the POST method for handling file uploads (http://au2.php.net/manual/en/features.file-upload.php).

Re: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-08 Thread Richard Davey
Hello Murray, Sunday, May 8, 2005, 9:20:58 PM, you wrote: MP So, can anyone confirm that there is no other way to upload files MP from a client machine using a form? (and assuming they don't have MP an ftp server at their end). Forms can only POST (or GET, but we'll ignore that for now) data.

Re: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-08 Thread Marek Kilimajer
Murray @ PlanetThoughtful wrote: Hi All, I need to implement the ability to ftp upload files from client machines via a form in a web application I'm developing. From reading the PHP help, all I can find to perform this is the POST method for handling file uploads

Re: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-08 Thread Richard Lynch
JavaScript *might* let the user choose a file and get its modification date/time... And then you could upload pieces of it at a time via JavaScript, I think. Incredibly inefficient, most likely, but you *COULD* You may want to just give the users training in some EZ ftp client, freely

Re: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-08 Thread bala chandar
Hi, On 5/9/05, Murray @ PlanetThoughtful [EMAIL PROTECTED] wrote: Hi All, I need to implement the ability to ftp upload files from client machines via a form in a web application I'm developing. From reading the PHP help, all I can find to perform this is the POST method for handling

RE: [PHP] Any alternative to POST method FTP uploads from client computer?

2005-05-08 Thread Murray @ PlanetThoughtful
Hi, On 5/9/05, Murray @ PlanetThoughtful [EMAIL PROTECTED] wrote: Hi All, I need to implement the ability to ftp upload files from client machines via a form in a web application I'm developing. From reading the PHP help, all I can find to perform this is the POST method for