Results 1 to 5 of 5
Threaded View
-
26th May 2012, 05:25 PM #2Respected MemberWebsite's:
DL4Everything.com Soft2050.inThe first bug which i see from the code is this:
PHP Code:$post = '&pass=~something~';
$post = '&file='.$_FILES['file'];
$post = '&subject'.$_POST['subject'];
$post = '&year'.$_POST['year'];
- Assignment Operator
- &year and &subject needs to have "=" after them
So those lines in your code to something like this and it should work:
PHP Code:$post = array(
'file' => '@' . $_FILES['file']['tmp_name'],
'subject' => $_POST['subject'],
'year' => $_POST['year']
);
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Wupload upload not working
By jackamitsingh in forum General DiscussionReplies: 1Last Post: 25th Oct 2011, 02:00 PM -
need working download and upload
By accyuklad in forum Hosting DiscussionReplies: 3Last Post: 9th Feb 2011, 11:46 AM -
Remote upload is not working for rs
By happyvalentine in forum General DiscussionReplies: 3Last Post: 14th Jan 2011, 02:13 PM -
working rapidshare upload plugin
By ahmsgf in forum Technical Help Desk SupportReplies: 7Last Post: 20th Nov 2010, 09:12 PM -
need a working megashares upload plugin
By Daniel in forum Web Application/Script SupportReplies: 0Last Post: 2nd Jul 2010, 05:42 PM
themaCreator - create posts from...
Version 3.53 released. Open older version (or...