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.