Код: Выделить всё
<?php
// The following code is required to properly run XWeb Human Emulator
require("../Templates/xweb_human_emulator.php");
$captchakey="xxx"; // введите ваш ключ антикапчи.
$browser->navigate('http://mamba.ru/my/reg.phtml');
$browser->wait_for(240,1);
$image->save_to_file_by_url("http://mamba.ru/captcha.php","c://c1.jpg","false");
$captcha=$image->recognize_by_anticaptcha("http://mamba.ru/captcha.php?","c://c2.jpg",$captchakey,"http://www.antigate.com");
$input->set_value_by_name('captcha',$captcha);
// Quit
$app->quit();
?>