Bueno los recursos con los que cuento es la pagina XML
que la pueden checar aqui :
kmpfurniture.com/feeds/kmpfurniture_catalog.xml
Pongo el XML aqui para que lo vean :
Cita:
<catalog>
<product>
<id>48</id>
<title>Boltrona Single Seater - Leather</title>
<description>
Texto de description
</description>
<price> 1185 </price>
<thumbimg>
kmpfurniture. com / admin / uploads/BoltronasingleseaterleatherThumbnail.jpg
</thumbimg>
<collection>Fire</collection>
</product>
</catalog>
<catalog>
<product>
<id>48</id>
<title>Boltrona Single Seater - Leather</title>
<description>
Texto de description
</description>
<price> 1185 </price>
<thumbimg>
kmpfurniture. com / admin / uploads/BoltronasingleseaterleatherThumbnail.jpg
</thumbimg>
<collection>Fire</collection>
</product>
</catalog>
Como lo interpreto con SimpleXML es de la siguiente manera :
Cita:
<?php
$xml = simplexml_load_file("kmpfurniture.com/feeds/kmpfurniture_catalog2.xml");
foreach($xml->product as $product)
{
printf("Title: %s\n", $product->title); echo "<br>";
echo "<img src='";
printf($product->thumbimg);
echo "' width='170px' height='139px'/><br/>" ;
printf("Price: $ %s\n ", $product->price); echo "<br>";
printf("Collection: $ %s\n ", $product->collection); echo "<br>";
echo "-------------------------------------------------------<br/>";
}
?>
Obtenemos el siguiete resultado :
Title : Boltrona Single Seater - Leather
{Aqui se popula la foto}
Price: $123.00
Collection: Fire
$xml = simplexml_load_file("kmpfurniture.com/feeds/kmpfurniture_catalog2.xml");
foreach($xml->product as $product)
{
printf("Title: %s\n", $product->title); echo "<br>";
echo "<img src='";
printf($product->thumbimg);
echo "' width='170px' height='139px'/><br/>" ;
printf("Price: $ %s\n ", $product->price); echo "<br>";
printf("Collection: $ %s\n ", $product->collection); echo "<br>";
echo "-------------------------------------------------------<br/>";
}
?>
Obtenemos el siguiete resultado :
Title : Boltrona Single Seater - Leather
{Aqui se popula la foto}
Price: $123.00
Collection: Fire
Title : Boltrona Single Seater - Leather
{Aqui se popula la foto}
Price: $123.00
Collection: Fire
[/QUOTE]
Lo que me gustari es solo popular los productos de la coleccion FIRE ,
porque en el XML hay 2 colecciones FIRE y EARTH,
?Como condiciono para solo requerir los productos que sean solo FIRE
Agradezco por la ayuda ... cuando termine el codigo paso por aqui denuevo a postear
toda la informacion recibida para ayudar al proximo que tenga el mismo reto...
Paz y muchas gracias