Re: [PHP-WIN] PHP ftp_put source_file values

2003-12-03 Thread Svensson, B.A.T. (HKG)
Seams like a answered the wrong question. :) Anyhow, I see that the file names differ in your example: e.g. test123.txt v.s. test123.123. Is that of any influence? On Wed, 2003-12-03 at 14:02, Svensson, B.A.T. (HKG) wrote: > I am not sure how PHP work with this, but maybe when you do > a ftp pu

Re: [PHP-WIN] PHP ftp_put source_file values

2003-12-03 Thread Svensson, B.A.T. (HKG)
I am not sure how PHP work with this, but maybe when you do a ftp put with only the file name your file will end up in the virtual root directory of your ftp or www site. This would then imply that you will not be able to refer to a physical hard drive partition on the system, but you will need ref

[PHP-WIN] PHP ftp_put source_file values

2003-12-03 Thread Brent
Hi all, The following statement. $upload = ftp_put($conn_id,'test123.123','c:\test123.txt', FTP_BINARY); does not work. I'm trying to send a file on my local C drive to the web\ftp server!! It works fine if I put. $upload = ftp_put($conn_id,'test123.123','test123.txt', FTP_BINARY); and make sure t