<?php $note=<<<XML <sample> <Item ItemNumber="00000088" FormattedItemNumber="00000-088"> <CompatibleModels /> <Category CatId="160" > test 123 </Category> <Images /> <Documents /> <RequiredItems /> </Item> </sample> XML; $xml=simplexml_load_string($note); //print_r($xml); foreach ($xml as $items) { echo $items->Category['CatId']; }
You have javascript disabled. You will not be able to edit any code.