$context = stream_context_create(array('http' => array(
'method' => 'POST',
'header' => 'Content-Type: text/xml',
'content' => xmlrpc_encode_request('artistMetadata', array($artist, 'en'))
)));
$file = file_get_contents('http://ws.audioscrobbler.com/1.0/rw/xmlrpc.php', false, $context);
$meta = xmlrpc_decode($file);