query('search', 'itemtitle', 'system')) {
die('An error occurred - '.$client->getErrorCode().":".$client->getErrorMessage());
}
echo "
Response:
";
print $client->getResponse();
echo "Response (dumped):
";
print_r ($client->getResponse());
echo "Response (XML'ed. View the page source of this document to see the response in XML format):
";
$tmp = new IXR_Value($client->getResponse(),'array');
print $tmp->getXml();
?>