私はこのコードを入れましたが、すべての正しいproducts_idを取得しましたが、すべてのproducts_modelは同じ番号です
foreach($xml->xpath('//PRODUCT/@ITEM') as $productitemid){
foreach($xml->CREATED->CATEGORY->PRODUCT as $product)
mysql_query("INSERT INTO products (products_id,products_model) VALUES ('$productitemid','$product->MODEL')");
}