login a form using curl

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
srdva59
Forum Commoner
Posts: 77
Joined: Sun Feb 15, 2009 10:58 am

login a form using curl

Post by srdva59 »

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
:)
Post Reply