can anyone possibly point me in the right directionI am using curl to get back a google picasa api feed.This all works well, with the autorisation and the fetching of the data,but now I want to expand a little bit in try'n to add,update tags,pics, geo-info from my site.How can I pass the feed I got back with curl to the domDocument somehow??this did not work\[code\]$dom = new DOMDocument();$xml = $dom->load(trim($feed )); or $xml = $dom->loadXML($feed);\[/code\]if I echo it directly I get an rss page in FF \[code\]echo trim($feed );\[/code\]but \[code\]echo $xml;\[/code\]will give a xml parse syntax error?Also, if anyone has any links to work with google-api for PUT, DELETE, UPDATE operationsthat is not related to ZEND, but uses a different PHP approach, curl or something, that would be great.(code that's easyer to follow)thanks, Richard