Need someone to write classes to upload a given file to various filehosts (members accounts, collectors accounts or whatever they are called must be utilised).

Looking to get around 10 written. Will pay $10 each. $100 in total for about 4-8 hours work depending on your skill.

An example is given below, can use rapidleech implementation as a guideline if you wish, infact all of mine including the one below where made using rl.
PHP Code: 
class rs {
        public function 
Upload($file) {
            if (! 
file_exists $file )) {
                die ( 
"The file <b>$file</b> does not exist" );
            }
            
$matches = array();
            
$rsrv file_get_contents 'http://rapidshare.com/cgi-bin/rsapi.cgi?sub=nextuploadserver_v1' );
            
$url "http://rs{$rsrv}.rapidshare.com/cgi-bin/upload.cgi";;
            
$postData = array ();
            
//simulates <input type="file" name="filecontent">
            
$postData ['filecontent'] = "@$file";
            
$postData ['submit'] = "Upload!";
                
$postData ['freeaccountid'] = 'splitice4';
                
$postData ['password'] = '-';
            
$postData ['rsapi_v1'] = "1";
            
$ch curl_init ();
            
curl_setopt $chCURLOPT_URL$url );
            
curl_setopt $chCURLOPT_RETURNTRANSFER);
            
curl_setopt $chCURLOPT_POST);
            
curl_setopt($chCURLOPT_NOPROGRESStrue);
            echo(
"Sending <b>$file</b> to RapidShare.com\r\n");
            
curl_setopt $chCURLOPT_POSTFIELDS$postData );
            
$response curl_exec $ch );
            if (
strstr $response"http://rapidshare.com/files/" )) {
                
$url strstr $response"http://rapidshare.com/files/" );
                
$url substr $url0strpos $url"\n" ) );
                return 
$url;
            }
            return 
false;
        }
    } 
Input: File
Output: false on failure
URL (string) on success.

Hosts needed:
FileServe
Hotfile
SendSpace
FileFactory
Badongo
Load.to
SharedZilla
NetLoad
EasyShare
FlyUpload


Interested? Add me on MSN: splitice [spam.AT.spam] hotmail.com

And if you do good I have more code needing to be done
SplitIce Reviewed by SplitIce on . Coder to do some quick and cheap code Need someone to write classes to upload a given file to various filehosts (members accounts, collectors accounts or whatever they are called must be utilised). Looking to get around 10 written. Will pay $10 each. $100 in total for about 4-8 hours work depending on your skill. An example is given below, can use rapidleech implementation as a guideline if you wish, infact all of mine including the one below where made using rl. class rs { public function Upload($file) { Rating: 5