Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
How to do Remote upload
Old 01-28-2009, 05:50 AM How to do Remote upload
Junior Talker

Posts: 1
Trades: 0
Hi.. friends. Can anyone help me..

Am having one site. I need to upload the files to my site in a post like attachments.

There is two way to upload the files
1. From system. (Like Using the Browse method. "Am Clear about this method")
2. Remote Upload (Upload File from a URL).

I dont know how to do remote upload.. Can any one please tell me how to do.

Thanks Friend..

** If you not clear wat i said.. Please see by clicking new post in this forum and click manage attachments and then new window will open. In that you can find "Upload File from a URL". I need tat help only.
vinoth_06 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-28-2009, 10:08 AM Re: How to do Remote upload
Mad182's Avatar
Skilled Talker

Posts: 54
Name: Madars
Location: Latvia
Trades: 0
PHP Code:
        function copyFile($url,$dirname){
            @
$file fopen ($url"rb");
            if (!
$file) {
                return 
false;
            }else {
                
$fc fopen($dirname"wb");
                while (!
feof ($file)) {
                   
$line fread ($file1028);
                   
fwrite($fc,$line);
                }
                
fclose($fc);
                return 
true;
            }
        }

        
copyFile($remote,$local); 
__________________
There's no place like 127.0.0.1

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Last edited by Mad182; 01-28-2009 at 10:10 AM..
Mad182 is offline
Reply With Quote
View Public Profile Visit Mad182's homepage!
 
Reply     « Reply to How to do Remote upload
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.09641 seconds with 12 queries