Without any specific explanation as to what you want to do, it's hard to give specific answers. Here's a short sample of grabbing the total-price:
<?php
$xml = simplexml_load_file('http://demo.uk.api.shopping.com/scripts/GSIsapiExt.dll/linkin_id-8001233/Keyword-Sony%20Mavica%20MVC-FD200%20Digital%20Camera')
or die("Unable to get XML feed");
printf("<p>Total Price: $%.2f</p>\n",
$xml->result->domain->{'domain-listing'}->{'store-offers'}->{'store-offer'}->{'total-price'});
?>