Forum: PHP Oct 2nd, 2008 |
| Replies: 2 Views: 876 sorry for late reply...went for holiday.i check the website above but there is nothing that can help me. my problem is, if i create a .doc file in red hat linux i can retrieve at windows using ftp... |
Forum: PHP Sep 25th, 2008 |
| Replies: 2 Views: 876 i develop a web based ftp system. i can retrieve .txt file only from the ftp server in red hat linux 9.0. Can any one tell me how to retrieve other type of files in ftp server for example .doc or... |
Forum: PHP Sep 23rd, 2008 |
| Replies: 4 Views: 1,813 i success in uploading file to FTP server. i use the cording below:-
$destination_dir = $_SERVER['DOCUMENT_ROOT'];
$destination_file = $uploaddir . basename($_FILES['file']['name']);
$upload =... |
Forum: PHP Sep 22nd, 2008 |
| Replies: 4 Views: 1,813 if i use the cording below replace the cording that i post previously:-
$destination_dir = 'home/admin';
$destination_file = $uploaddir . basename($_FILES['file']['name']);
if... |
Forum: PHP Sep 22nd, 2008 |
| Replies: 4 Views: 1,813 i did as you said but it still does not work. here is the cording that i add in upload.php file before close the ftp connection:-
// upload the file
//$upload =... |
Forum: PHP Sep 22nd, 2008 |
| Replies: 4 Views: 1,813 i currently working on web based ftp system where this system will upload and retrieve file from ftp server in red hat linux 9.0.
here is the php cording for the upload file:-
1.upload.html
... |