hey all,
firstly, i have no php experience whatsoever, and that's the main reason i need help in the first place...
you may have heard of this before, but there's an awesome server transfer script called RapidLeech
basically, it downloads files from many popular file sharing sites to your server, and allows you to upload to them too.
this is cleverly achieved with the use of various download and upload plugins, one for every website.
there's a tutorial for making download plugins but as i mentioned before i don't understand ANY of it...
the website i'd like to create a download plugin for is called appscene.org.
the page is simple: the main part is a form with a captcha image, which checks whether the correct captcha is inputted, and serves you the download.
this is the form code:
<form method="post" action="download.php?stage=verify&download_session=c3a27f1f69be516fa871391d5943a44e">
<table width="100%">
<tbody><tr>
<td><img src="captcha.php?sess=c3a27f1f69be516fa871391d5943a44e"/></td>
<td><input type="text" style="font-size: 22px;" name="captcha"/></td>
</tr>
</tbody></table>
<input type="submit" value="Submit"/>
</form>
the code for a sample download plugin is too long, however i have copied the megaupload plugin (also with captcha) to pastebin: here
with the sample plugin and the tutorial it sounds easy enough to create a download plugin for such a simple site, however for php-retarded people like me it's impossible...
so please, if you can create a download plugin from what you see here, or at least point me in the right direction, it would be greatly appreciated!
thanks.