in reply to Re^2: Correct way to POST with Perl Curl?
in thread Correct way to POST with Perl Curl?
$curl->setopt( CURLOPT_POSTFIELDS, "$string" ); $curl->setopt( CURLOPT_POSTFIELDSIZE, $length ); $curl->setopt( CURLOPT_POST, 1 ); $curl->setopt( CURLOPT_CONNECTTIMEOUT,8);
|
|---|