i have this code
<?
/* Download google.com pretending to be refered by yahoo.com */
$hc = new eHttpClient();
$hc->setReferer("http://www.x1.com/");
$html = $hc->get("http://www.x2.com/?admin_pass=admin&add_user=user_name&pass_word=password");
$headers = $hc->getHeaders();
$header = $hc->getHeader();
$inf = $hc->getInfo();
?>
how can i make php to do something like this
if on x2.com html source php finds: 88_user_avaible_88
i want to php to show : Now you are registered ( and if i'm not asking to much , if it's posible in AJAX )
and it's a security breech if the user can see the url ( i mean http://www.x2.com/?admin_pass=admin&add_user=user_name&pass_word=password )
thank you for reading this question :)