$xml
is a SimpleXML
object.
print_r($xml->Title);
outputs SimpleXMLElement Object ( [0] => K&H 3093 Extreme Weather Kitty Pad with Fleece Cover )
How do I access the first element?
print_r($xml->Title[0]);
outputs nothing!
Try
echo (string) $xml->Title;
You have to cast it as a string.