dnmtnk adlı üyeden alıntı: mesajı görüntüle
<?php
/**
 * @author Raiden
 * @copyright 2009
 */
$method = 'weblogUpdates.ping';
$parametre = array('SAYFA ADIN','http://www.siten.com');
$request = xmlrpc_encode_request($method,$parametre);
$context = stream_context_create(array('http' => array(
	'method' => 'post',
	'header' => 'Content-Type: text/xml;',
	'content' => $request
)));
$sonuc = file_get_contents('http://rpc.technorati.com/rpc/ping',false,$context);
if (xmlrpc_is_fault($sonuc))
{
	echo '<pre>';
	print_r($sonuc);
}
else
{
	echo '<pre>';
	print_r($sonuc);
}
?>
senin kodlar çalışmıyor

Alıntı
Warning: file_get_contents(http://api.my.yahoo.com/RPC2) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 405 Method Not Allowed in /home/sik5x8fd/public_html/xxxxx.com/ping.php on line 16