
July 23rd, 2000, 02:16 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
I want to fopen a local file with php program in server.
The file name is transferred through a form
...< input type="file" name="filename"...
I write the php code like this
fopen($filename,"r");
But I cant reach to my expected result.
So I should use ftp? first, ftp the file form local disk to server, then in server fopen the file. ...
( and can i implement it? )
|