Elavarasan Muthuvalavan
Results
2
comments of
Elavarasan Muthuvalavan
Hi @piotr-cz, I tried the solution suggested by you. I am able to see the uploaded file in /tmp/ directory of our server. When I tried to send the file...
Code Snippet: ``` curl_setopt($ch, CURLOPT_HTTPHEADER, $request_headers); // (re-)send headers curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // return response curl_setopt($ch, CURLOPT_HEADER, true); // enabled response headers if(array_key_exists('CONTENT_TYPE', $_SERVER) && strpos($_SERVER['CONTENT_TYPE'], 'multipart/form-data;') === 0) {...