How to retrieve captcha and save session with PHP cURL?

Posted by user302974 on Stack Overflow See other posts from Stack Overflow or by user302974
Published on 2010-03-27T01:00:29Z Indexed on 2010/03/27 1:03 UTC
Read the original article Hit count: 257

Filed under:
|
|
|

Hi all,

i'm create some script to submit content via php curl. first fetch session and captcha, and user must submit captcha to final submit.

the problem is i can't get captcha, i've try with this code and preg_match to get image tag and return it

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2'); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_COOKIE, 1); curl_setopt($ch, CURLOPT_COOKIEJAR, "1"); curl_setopt($ch, CURLOPT_COOKIEFILE, "1"); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result = curl_exec($ch);
curl_close($ch);

But no luck, page i'm trying to submit is http://abadijayaiklan.co.cc/pasang-iklan/.

I hope someone can help me out :)

Thanks and regards

© Stack Overflow or respective owner

Related posts about save

Related posts about captcha