hi,
i have this code:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
// curl_setopt($ch, CURLOPT_HTTPHEADER, $this_header);
curl_setopt($ch, CURLOPT_POSTFIELDS,$post);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_REFERER, $referer);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookies);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookies);
$result = curl_exec ($ch);
// echo $result;
curl_close ($ch);
that works fine with a simple post but now i need post
a password and a username in vb6 browser in need add this:
Headers = "Content-Type: application/x-www-form-urlencoded" & vbCrLf
into the headers and this:
Postdata = StrConv(Postdata, vbFromUnicode)
into the post data
so i think in php i need do something similar .
any one know how is done?
thanks for you rhelp
:)