I load more than 50 XML files on my homepage. An example structure you can see here:
http://api.eve-central.com/api/marketstat?usesystem=30000142&hours=24&typeid=3683&minQ=10000
I need the price "sell" -> "min". So currently I run foreach()
loops and stop when got it. But my page needs more than 30 seconds to handle this, I think I need a direct entry to the data like:
$min = $xml -> children() -> children() -> sell -> min;
Can anybody give me the right arithmetik?
Thx step