prashcom Posted October 29, 2007 Share Posted October 29, 2007 Hi All, I want to upload my txt file using curl file upload. Its not working properly. I used Mozilla Live Http header but i was no luck. Seems all fine.. i need the solution very urgently.. My porblem is ... How to upload file using culr.. this is code i am using: $httpheaders[]="Authorization: Basic $auth"; $httpheaders[]="Content-Type: text/xml"; $httpheaders[] = "FileFormat: TabDelimited"; $filePath = 'TOOLS.TXT'; $postParams = "@$filePath"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); // set URL curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_POSTFIELDS,$postParams); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // return result in a variable curl_setopt($ch, CURLOPT_HEADER, 1); // include headers in result curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheaders); // send my headers $postResult = curl_exec($ch); if (curl_errno($ch)) { print curl_error($ch); print "<br>Unable to upload file."; exit(); } curl_close($ch); echo "<pre>$postResult</pre>"; This script is not working fine.. Please help me out Quote Link to comment https://forums.phpfreaks.com/topic/75186-curl-upload-problem/ Share on other sites More sharing options...
MadTechie Posted October 29, 2007 Share Posted October 29, 2007 need the solution very urgently.. See Freelance section.. offer something This script is not working fine.. Thats usfull whats not working ? Quote Link to comment https://forums.phpfreaks.com/topic/75186-curl-upload-problem/#findComment-380235 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.