I got a software for SEO and it has a feature to solve captcha when depatcher intergrated here. So how to integrate decaptcher to this software? Now I need to synchrone my decaptcher account with this below code, can u tell me how can I do it? START HERE :: +++++++++++++++++++++++++++++++++ <?PHP $fullfilepath = $_FILES["pict"]["tmp_name"]; $trynum = 0; //do { $data = array ( 'function' => 'picture2', 'pict' => '@'.$fullfilepath, 'username' => 'jr888', 'password' => 'johan888', 'pict_to' => '0', 'pict_type' => '0', 'submit' => 'Send', ); $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "http://poster.decaptcher.com/"); curl_setopt($curl, CURLOPT_VERBOSE, true); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); $result = curl_exec($curl); curl_close($curl); $pieces = explode("|", $result); $trynum++; echo "t".$trynum; //} while ($pieces[5] == "" && $trynum < 50); echo "text='".$pieces[5]."'"; ?> ENDS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ BEST REGRDS