Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We imagine that form;

<form action="http://api.blabla.com/huhu.php" method="post" enctype="multipart/form-data">
        <input type="file" name="files[]" />
        <button type="submit">submit</button>
    </form>

I want to upload files to this server without using the form which is above.

I tried this with php curl but I could not.

I want it because I have very large number of files to upload. And this should be automatic with cron jobs.

share|improve this question

2 Answers

up vote 2 down vote accepted

This is an example of file uploading with cURL you could start with:

$ch = curl_init('http://api.blabla.com/huhu.php');
curl_setopt_array($ch, array(
    CURLOPT_POSTFIELDS => array(
        'files[]' => '@/path/to/file',
    ),
));
if (false === ($res = curl_exec($ch))) {
    die("Upload failed: " . curl_error($ch));
}

The string '@/path/to/file' has a special meaning because it starts with an @; the string that directly follows it should contain the path of a file you wish to upload.

share|improve this answer

This should answer you.

http://dtbaker.com.au/random-bits/uploading-a-file-using-curl-in-php.html

share|improve this answer
Don't post link-only answers. – Jack Dec 26 '12 at 3:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.