Hi (first post).

I need to do the equivalent of the following php-code using cURL directly:

$ch = curl_init($posturl);
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $postvars);
 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
 curl_setopt($ch, CURLOPT_HEADER, 1);
 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

I can't figure out everything and I canät find a guide online.

CURLOPT_FOLLOWLOCATION == --location
CURLOPT_SSL_VERIFYPEER == --insecure
CURLOPT_POST == --header "Expect:" //some bug causing it to fail otherwize(?)
CURLOPT_HEADER == --include
CURLOPT_RETURNTRANSFER == ???

--
Hälsningar,
Bobo Wieland
------------------------------------------------------------------------
[email protected] <mailto:[email protected]>

www.prisjakt.nu <http://www.prisjakt.nu/>
www.minhembio.com <http://www.minhembio.com/>

Prisjakt Sverige AB
Laxgatan 1, 262 32 Ängelholm

/This e-mail (and any attachment's) is intendend for the named recipient(s) only. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden./

-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette:  http://curl.haxx.se/mail/etiquette.html

Reply via email to